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