KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > StringBufferTest


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

5 package com.tctest;
6
7 import com.tctest.stringbuffer.StringBufferTestApp;
8
9 public class StringBufferTest extends TransparentTestBase {
10
11   private static final int NODE_COUNT = 5;
12
13   public void setUp() throws Exception JavaDoc {
14     super.setUp();
15     getTransparentAppConfig().setClientCount(NODE_COUNT).setIntensity(1);
16     initializeTestRunner();
17   }
18
19   protected Class JavaDoc getApplicationClass() {
20     return StringBufferTestApp.class;
21   }
22
23 }
24
Popular Tags