01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest;
05:
06: import com.tc.simulator.app.ApplicationConfig;
07: import com.tc.simulator.listener.ListenerProvider;
08:
09: public class EhcacheGlobalEviction130TestApp extends
10: EhcacheGlobalEvictionTestApp {
11: private final static int NUM_OF_L1 = 2;
12:
13: public EhcacheGlobalEviction130TestApp(String appId,
14: ApplicationConfig cfg, ListenerProvider listenerProvider) {
15: super(appId, cfg, listenerProvider);
16: }
17: }
|