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 CloneExceptionTest extends TransparentTestBase {
08:
09: private static final int NODE_COUNT = 1;
10:
11: public CloneExceptionTest() {
12: // DEV-865
13: disableAllUntil("2008-11-10");
14: }
15:
16: public void setUp() throws Exception {
17: super .setUp();
18: getTransparentAppConfig().setClientCount(NODE_COUNT)
19: .setIntensity(1);
20: initializeTestRunner();
21: }
22:
23: protected Class getApplicationClass() {
24: return CloneExceptionTestApp.class;
25: }
26: }
|