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.restart.system;
06:
07: import com.tctest.TestConfigurator;
08: import com.tctest.TransparentTestBase;
09: import com.tctest.TransparentTestIface;
10:
11: public class ObjectDataL1ReconnectCrashTest extends TransparentTestBase
12: implements TestConfigurator {
13:
14: private int clientCount = 2;
15:
16: protected Class getApplicationClass() {
17: return ObjectDataTestApp.class;
18: }
19:
20: public void doSetUp(TransparentTestIface t) throws Exception {
21: t.getTransparentAppConfig().setClientCount(clientCount)
22: .setIntensity(1);
23: t.initializeTestRunner();
24: }
25:
26: protected boolean canRunCrash() {
27: return true;
28: }
29:
30: protected boolean enableL1Reconnect() {
31: return true;
32: }
33: }
|