KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > transparency > ShareExceptionsTest


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.transparency;
5
6 import com.tctest.TestConfigurator;
7 import com.tctest.TransparentTestBase;
8 import com.tctest.TransparentTestIface;
9
10 public class ShareExceptionsTest extends TransparentTestBase implements TestConfigurator {
11
12   private static final int NODE_COUNT = 2;
13   
14   public ShareExceptionsTest() {
15     super();
16   }
17
18   protected Class JavaDoc getApplicationClass() {
19     return ShareExceptionsTestApp.class;
20   }
21
22   public void doSetUp(TransparentTestIface t) throws Exception JavaDoc {
23     t.getTransparentAppConfig().setClientCount(NODE_COUNT).setIntensity(1);
24     t.initializeTestRunner();
25   }
26
27 }
28
Popular Tags