Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add native-image tests verifying all our data structures #99

Open
pivovarit opened this issue Nov 11, 2020 · 0 comments
Open

Add native-image tests verifying all our data structures #99

pivovarit opened this issue Nov 11, 2020 · 0 comments
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@pivovarit
Copy link
Contributor

We need to add a suite of smoke tests for all Hazelcast data structures. It's enough to obtain an instance and perform a simple read/write operation on it.

ISet<Object> set = hazelcastInstance.getSet("cacheName");
BaseQueue<?> queue = hazelcastInstance.getQueue("cacheName");
Ringbuffer<Object> ringbuffer = hazelcastInstance.getRingbuffer("foo-ringbuffer");
IList<Object> list = hazelcastInstance.getList("foo-list");
ReplicatedMap<Object, Object> cache = hazelcastInstance.getReplicatedMap("foo-replicated-map");
MultiMap<Object, Object> cache2 = hazelcastInstance.getMultiMap("foo-multimap");
IQueue<Object> queue3 = hazelcastInstance.getQueue("foo-queue");
ITopic<Object> topic = hazelcastInstance.getReliableTopic("foo:topic-reliable");
ITopic<Object> topic4 =  hazelcastInstance.getTopic("foo-topic");
@pivovarit pivovarit added enhancement New feature or request help wanted Extra attention is needed labels Nov 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant