01: /*
02: * All content copyright (c) 2003-2007 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 AutolockedDistributedMethodCallTest extends
08: TransparentTestBase implements TestConfigurator {
09:
10: private static final int NODE_COUNT = 3;
11: private static final int LOOP_ITERATION_COUNT = 1;
12:
13: public AutolockedDistributedMethodCallTest() {
14: // disableAllUntil("2007-11-15");
15: }
16:
17: public void doSetUp(TransparentTestIface t) throws Exception {
18: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
19: .setIntensity(LOOP_ITERATION_COUNT);
20: t.initializeTestRunner();
21: }
22:
23: protected Class getApplicationClass() {
24: return AutolockedDistributedMethodCallTestApp.class;
25: }
26:
27: }
|