Mercurial > hg > FederatedLinda
annotate src/fdl/test/transfer/two/TestTransfer.java @ 53:629b6cfbd37f
metaprotocol ring
author | axmo |
---|---|
date | Mon, 19 Jan 2009 17:49:14 +0900 |
parents | |
children | 82a292aa41ad |
rev | line source |
---|---|
53 | 1 package fdl.test.transfer.two; |
2 | |
3 import static org.junit.Assert.*; | |
4 import org.junit.Test; | |
5 | |
6 public class TestTransfer { | |
7 @Test | |
8 public void testTransfer() throws InterruptedException { | |
9 int port = 10001; | |
10 Server server = new Server("Server1",port); | |
11 server.start(); | |
12 server.join(); | |
13 TestSend send = new TestSend(port); | |
14 send.start(); | |
15 | |
16 send.join(); | |
17 | |
18 assertEquals(1,1); | |
19 } | |
20 } |