01: package com.tctest;
02:
03: public class HibernateSimpleTest extends TransparentTestBase {
04: private final static int NODE_COUNT = 2;
05: private final static int LOOP_COUNT = 1;
06:
07: public void setUp() throws Exception {
08: super .setUp();
09:
10: getTransparentAppConfig().setClientCount(NODE_COUNT)
11: .setIntensity(LOOP_COUNT);
12: initializeTestRunner();
13: }
14:
15: protected Class getApplicationClass() {
16: return HibernateSimpleTestApp.class;
17: }
18: }
|