@Test
public void testUnitFeatureInitialization2() {
LinkedHashMap<String, Feature> map1 = new LinkedHashMap<String, Feature>();
map1.put("new", new Feature("new", true, "description"));
map1.put("old", new Feature("old", true, "description"));
InMemoryFeatureStore imfs = new InMemoryFeatureStore(map1);
Assert.assertEquals(2, imfs.readAll().size());
Assert.assertNotNull(imfs.read("old"));
}