use of com.hazelcast.simulator.common.SimulatorProperties in project hazelcast-simulator by hazelcast.
the class CloudProviderUtilsTest method testIsLocal_fromProperties_withLocal.
@Test
public void testIsLocal_fromProperties_withLocal() {
SimulatorProperties properties = getSimulatorProperties(PROVIDER_LOCAL);
assertTrue(CloudProviderUtils.isLocal(properties));
}
Aggregations