01: package com.tctest;
02:
03: /*
04: * Unit test for measuring the overhead of the instrumented Field class. For correctness
05: * tests for instrumented Field class, refer to the ReflectionFieldTest.
06: */
07: public class IBatisSimpleTest extends TransparentTestBase {
08: private final static int NODE_COUNT = 2;
09: private final static int LOOP_COUNT = 1;
10:
11: public void setUp() throws Exception {
12: super .setUp();
13:
14: getTransparentAppConfig().setClientCount(NODE_COUNT)
15: .setIntensity(LOOP_COUNT);
16: initializeTestRunner();
17: }
18:
19: protected Class getApplicationClass() {
20: return IBatisSimpleTestApp.class;
21: }
22: }
|