01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.simulator.distrunner;
05:
06: import junit.framework.TestCase;
07:
08: public class DistRunnerTest extends TestCase {
09:
10: public void testBasic() {
11: //Collection
12: //DistRunner distRunner = new DistRunner(cli);
13:
14: // if no args... default client
15: // else... at least 1 client
16: // 1st client run as master
17: }
18:
19: }
|