1 5 package com.tctest; 6 7 public class DistributedMethodCallExpressionTest extends TransparentTestBase implements TestConfigurator { 8 private static final int NODE_COUNT = 3; 9 private static final int LOOP_ITERATION_COUNT = 1; 10 11 public void doSetUp(TransparentTestIface t) throws Exception { 12 t.getTransparentAppConfig().setClientCount(NODE_COUNT).setIntensity(LOOP_ITERATION_COUNT); 13 t.initializeTestRunner(); 14 } 15 16 protected Class getApplicationClass() { 17 return DistributedMethodCallExpressionTestApp.class; 18 } 19 } 20 | Popular Tags |