Mercurial > hg > FederatedLinda
view src/fdl/test/transfer/two/TestTransfer.java @ 66:82a292aa41ad
fix
author | one |
---|---|
date | Sat, 06 Jun 2009 14:23:02 +0900 |
parents | 629b6cfbd37f |
children |
line wrap: on
line source
package fdl.test.transfer.two; import static org.junit.Assert.assertEquals; import org.junit.Test; public class TestTransfer { @Test public void testTransfer() throws InterruptedException { int port = 10001; Server server = new Server("Server1",port); server.start(); server.join(); TestSend send = new TestSend(port); send.start(); send.join(); assertEquals(1,1); } }