01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tctest;
06:
07: import com.tc.util.runtime.Vm;
08:
09: /*
10: * Test case for CDV-253
11: */
12:
13: public class HashMapBatchTxnTest extends TransparentTestBase {
14:
15: private static final int NODE_COUNT = 2;
16:
17: public HashMapBatchTxnTest() {
18: // MNK-362
19: if (Vm.isIBM()) {
20: //disableAllUntil("2007-12-04");
21: }
22: }
23:
24: public void doSetUp(TransparentTestIface t) throws Exception {
25: t.getTransparentAppConfig().setClientCount(NODE_COUNT);
26: t.initializeTestRunner();
27: }
28:
29: protected Class getApplicationClass() {
30: return HashMapBatchTxnTestApp.class;
31: }
32:
33: }
|