public void testStaticArrayStorePartitionFactory() throws IOException {
setUpStorePartitionConfig();
ArrayStoreFactory storeFactory = new StaticArrayStoreFactory();
ArrayStore store = storeFactory.create(_config);
assertEquals(StaticArrayStorePartition.class, store.getClass());
StaticArrayStorePartition p = (StaticArrayStorePartition)store;
assertEquals(p.capacity(), p.length());
assertEquals(p.capacity(), store.capacity());