01: package com.tctest;
02:
03: public class EhcacheManagerTest extends TransparentTestBase {
04:
05: public EhcacheManagerTest() {
06: //
07: }
08:
09: public void doSetUp(final TransparentTestIface tt) throws Exception {
10: tt.getTransparentAppConfig().setClientCount(
11: EhcacheManagerTestApp.EXPECTED_THREAD_COUNT);
12: tt.initializeTestRunner();
13: }
14:
15: protected Class getApplicationClass() {
16: return EhcacheManagerTestApp.class;
17: }
18:
19: }
|