01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest;
05:
06: import com.tc.util.runtime.Vm;
07:
08: import java.util.Date;
09:
10: public class GenericList15Test extends TransparentTestBase {
11: private static final int NODE_COUNT = 3;
12:
13: public GenericList15Test() {
14: if (Vm.isIBM()) {
15: // these currently don't have to work on the IBM JDK
16: disableAllUntil(new Date(Long.MAX_VALUE));
17: }
18: }
19:
20: protected void setUp() throws Exception {
21: super .setUp();
22: getTransparentAppConfig().setClientCount(NODE_COUNT)
23: .setIntensity(1);
24: initializeTestRunner();
25: }
26:
27: protected Class getApplicationClass() {
28: return GenericList15TestApp.class;
29: }
30:
31: }
|