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.longrunning;
05:
06: import com.tctest.TestConfigurator;
07: import com.tctest.TransparentTestIface;
08: import com.tctest.TransparentTestBase;
09:
10: public class LargeGraphTester extends TransparentTestBase implements
11: TestConfigurator {
12:
13: int NODE_COUNT = 4;
14: int LOOP_ITERATION_COUNT = 1;
15:
16: public void setUp() throws Exception {
17: super .setUp();
18: doSetUp(this );
19: }
20:
21: public void doSetUp(TransparentTestIface t) throws Exception {
22: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
23: .setIntensity(LOOP_ITERATION_COUNT);
24:
25: t.initializeTestRunner();
26: }
27:
28: protected Class getApplicationClass() {
29: return LargeGraphTestApp.class;
30: }
31:
32: }
|