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());
assertEquals(p.capacity(), _config.getInitialCapacity());
assertEquals(p.getIndexStart(), ((StorePartitionConfig)_config).getPartitionStart());
store.close();