view 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
line wrap: on
line source

package fdl.test.transfer.two;

import static org.junit.Assert.*;
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);
	}
}