01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest;
05:
06: public class CloneTest extends TransparentTestBase {
07:
08: public void doSetUp(TransparentTestIface t) throws Exception {
09: t.getTransparentAppConfig().setClientCount(
10: CloneTestApp.NODE_COUNT)
11: .setApplicationInstancePerClientCount(1)
12: .setIntensity(1);
13: t.initializeTestRunner();
14: }
15:
16: protected Class getApplicationClass() {
17: return CloneTestApp.class;
18: }
19:
20: }
|