In my unit tests, I want to create an embedded (in-process/in-memory) Hazelcast instance that does not attempt to start or perform any networking operations at all.
How do I do this?
For example:
Config config = new Config();
// what goes here?
HazelcastInstance inProcessOnly = Hazelcast.newHazelcastInstance(config);