public Object[] createTests() throws Exception {
URI storeId1 = URI.create("urn:mux-tck-test:42");
URI storeId2 = URI.create("urn:mux-tck-test:43");
List<? extends BlobStore> nonTxnStores = Arrays.asList(
new MemBlobStore(URI.create("urn:store:1")),
new MemBlobStore(URI.create("urn:store:2"))
);
List<? extends BlobStore> txnStores = Arrays.asList(
createTxnStore("mux-txn-text-1", new MemBlobStore(URI.create("urn:store:5"))),
createTxnStore("mux-txn-text-2", new MemBlobStore(URI.create("urn:store:6")))
);
return new Object[] {
new MuxStoreTestSuite(createMuxStore(storeId1, nonTxnStores), storeId1, false, true),
new MuxStoreTestSuite(createMuxStore(storeId2, txnStores), storeId2, true, false),