Mercurial > hg > FederatedLinda
view src/fdl/test/metaTransfer/TestTransfer.java @ 93:a1d796c0e975 fuchita
Wait Read Tester
author | one |
---|---|
date | Tue, 25 May 2010 22:57:54 +0900 |
parents | 82a292aa41ad |
children |
line wrap: on
line source
package fdl.test.metaTransfer; import static org.junit.Assert.assertEquals; import java.io.IOException; import org.junit.Test; public class TestTransfer { @Test public void testTransfer() throws IOException { int port1 = 10001; int port2 = 10002; // Server server1 = new Server("Server1",port1); // server1.start(); // Server server2 = new Server("Server2",port2); server2.start(); FDLServWithSend send = new FDLServWithSend(port1, port2); send.mainLoop(); assertEquals(1,1); } }