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 SyntheticFaultTest extends TransparentTestBase {
08: private final static int NODE_COUNT = 2;
09:
10: public void doSetUp(TransparentTestIface t) throws Exception {
11: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
12: .setApplicationInstancePerClientCount(1)
13: .setIntensity(1);
14: t.initializeTestRunner();
15: }
16:
17: protected Class getApplicationClass() {
18: return SyntheticFaultTestApp.class;
19: }
20:
21: }
|