public void testStaticObjectArrayFactory2() throws IOException {
setUpStorePartitionConfig();
ObjectStoreFactory<Integer, String> storeFactory = new StaticObjectArrayFactory<String>();
ObjectStore<Integer, String> store = storeFactory.create(_config, new IntSerializer(), new StringSerializerUtf8());
assertEquals(SerializableObjectArray.class, store.getClass());
assertEquals(StaticArrayStorePartition.class, ((SerializableObjectArray<String>)store).getStore().getClass());
store.close();
}