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: public class LinkedBlockingQueueL1ReconnectCrashTest extends
08: TransparentTestBase {
09:
10: private static final int NODE_COUNT = 8;
11:
12: public LinkedBlockingQueueL1ReconnectCrashTest() {
13: //disableAllUntil("2007-06-30");
14: }
15:
16: public void doSetUp(TransparentTestIface t) throws Exception {
17: t.getTransparentAppConfig().setClientCount(NODE_COUNT);
18: t.initializeTestRunner();
19: }
20:
21: protected Class getApplicationClass() {
22: return LinkedBlockingQueueCrashTestApp.class;
23: }
24:
25: protected boolean canRunCrash() {
26: return true;
27: }
28:
29: protected boolean enableL1Reconnec() {
30: return true;
31: }
32:
33: }
|