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: public class JavaUtilConcurrentCloneTest extends TransparentTestBase {
08:
09: public JavaUtilConcurrentCloneTest() {
10: //
11: }
12:
13: public void doSetUp(TransparentTestIface t) throws Exception {
14: t.getTransparentAppConfig().setClientCount(
15: JavaUtilConcurrentCloneTestApp.NODE_COUNT)
16: .setApplicationInstancePerClientCount(1)
17: .setIntensity(1);
18: t.initializeTestRunner();
19: }
20:
21: protected Class getApplicationClass() {
22: return JavaUtilConcurrentCloneTestApp.class;
23: }
24:
25: }
|