KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > MissingClassApplyTest


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

5 package com.tctest;
6
7 public class MissingClassApplyTest extends TransparentTestBase {
8
9   private static final int NODE_COUNT = 5;
10
11   public MissingClassApplyTest() {
12     disableAllUntil("3000-04-06"); // XXX timebombed
13
}
14
15   public void doSetUp(TransparentTestIface t) throws Exception JavaDoc {
16     t.getTransparentAppConfig().setClientCount(NODE_COUNT).setApplicationInstancePerClientCount(1).setIntensity(1);
17     t.initializeTestRunner();
18   }
19
20   protected Class JavaDoc getApplicationClass() {
21     return MissingClassApplyTestApp.class;
22   }
23
24 }
25
Popular Tags