use of org.ff4j.property.Property in project ff4j by ff4j.
the class MappingUtilsTest method testJsonMapping.
@Test
public void testJsonMapping() {
JsonUtils.permissionsAsJson(null);
JsonUtils.customPropertiesAsJson(null);
JsonUtils.customPropertiesAsJson(new HashMap<String, Property<?>>());
FeatureStore store1 = new InMemoryFeatureStore();
FF4jCacheProxy proxy = new FF4jCacheProxy(store1, null, null);
JsonUtils.cacheJson(proxy);
}
Aggregations