KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > transparency > InstrumentEverythingTest


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

4 package com.tctest.transparency;
5
6 import com.tctest.TestConfigurator;
7 import com.tctest.TransparentTestBase;
8 import com.tctest.TransparentTestIface;
9
10 public class InstrumentEverythingTest extends TransparentTestBase implements TestConfigurator {
11
12   private static final int NODE_COUNT = 2;
13   
14   protected Class JavaDoc getApplicationClass() {
15     return InstrumentEverythingTestApp.class;
16   }
17
18   public void doSetUp(TransparentTestIface t) throws Exception JavaDoc {
19     t.getTransparentAppConfig().setClientCount(NODE_COUNT).setIntensity(1);
20     t.initializeTestRunner();
21   }
22
23 }
24
Popular Tags