01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tctest;
06:
07: import com.tc.config.schema.setup.TestTVSConfigurationSetupManagerFactory;
08:
09: public class CacheLoadPerformanceTest extends TransparentTestBase {
10:
11: private static final int NODE_COUNT = 1;
12:
13: public void doSetUp(TransparentTestIface t) throws Exception {
14: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
15: .setIntensity(1);
16: initializeTestRunner();
17: }
18:
19: protected void setupConfig(
20: TestTVSConfigurationSetupManagerFactory configFactory) {
21: configFactory.setGCIntervalInSec(1000000);
22: }
23:
24: protected Class getApplicationClass() {
25: return CacheLoadPerformanceTestApp.class;
26: }
27:
28: }
|