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