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 GenericQueueTest extends TransparentTestBase {
11: private static final int NODE_COUNT = 3;
12:
13: public GenericQueueTest() {
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: initializeTestRunner();
24: }
25:
26: protected Class getApplicationClass() {
27: return GenericQueueTestApp.class;
28: }
29:
30: }
|