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