use of com.hazelcast.internal.config.MapConfigReadOnly in project hazelcast by hazelcast.
the class MapConfigReadOnlyTest method getMapStoreConfigOfReadOnlyMapConfigShouldReturnNullIfConfigIsNull.
@Test
public void getMapStoreConfigOfReadOnlyMapConfigShouldReturnNullIfConfigIsNull() {
MapConfig config = new MapConfig().setMapStoreConfig(null);
MapStoreConfig mapStoreConfig = new MapConfigReadOnly(config).getMapStoreConfig();
assertNull(mapStoreConfig);
}
Aggregations