01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest;
05:
06: public class MapValuesIteratorFaultBreadthTest extends
07: TransparentTestBase implements TestConfigurator {
08:
09: private static final int NODE_COUNT = 3;
10: private static final int THREADS_COUNT = 1;
11:
12: protected Class getApplicationClass() {
13: return MapValuesIteratorFaultBreadthTestApp.class;
14: }
15:
16: public void doSetUp(TransparentTestIface t) throws Exception {
17: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
18: .setApplicationInstancePerClientCount(THREADS_COUNT);
19: t.initializeTestRunner();
20: }
21:
22: }
|