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 MissingClassApplyTest extends TransparentTestBase {
08:
09: private static final int NODE_COUNT = 5;
10:
11: public MissingClassApplyTest() {
12: disableAllUntil("2008-01-10");
13: }
14:
15: public void doSetUp(TransparentTestIface t) throws Exception {
16: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
17: .setApplicationInstancePerClientCount(1)
18: .setIntensity(1);
19: t.initializeTestRunner();
20: }
21:
22: protected Class getApplicationClass() {
23: return MissingClassApplyTestApp.class;
24: }
25:
26: }
|