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