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