01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest.transparency;
05:
06: import com.tctest.TestConfigurator;
07: import com.tctest.TransparentTestBase;
08: import com.tctest.TransparentTestIface;
09:
10: public class InstrumentEverythingTest extends TransparentTestBase
11: implements TestConfigurator {
12:
13: private static final int NODE_COUNT = 2;
14:
15: protected Class getApplicationClass() {
16: return InstrumentEverythingTestApp.class;
17: }
18:
19: public void doSetUp(TransparentTestIface t) throws Exception {
20: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
21: .setIntensity(1);
22: t.initializeTestRunner();
23: }
24:
25: }
|