KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > CloneTest


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tctest;
5
6 public class CloneTest extends TransparentTestBase {
7
8   public void doSetUp(TransparentTestIface t) throws Exception JavaDoc {
9     t.getTransparentAppConfig().setClientCount(CloneTestApp.NODE_COUNT).setApplicationInstancePerClientCount(1).setIntensity(1);
10     t.initializeTestRunner();
11   }
12
13   protected Class JavaDoc getApplicationClass() {
14     return CloneTestApp.class;
15   }
16
17   protected boolean getStartServer() {
18     return true;
19   }
20
21 }
22
Popular Tags