view src/fdl/old/test/transfer/TestTransfer.java @ 114:3b877c9a44f5

gather old packages
author kazz
date Mon, 11 Oct 2010 14:29:37 +0900
parents src/fdl/test/transfer/TestTransfer.java@82a292aa41ad
children
line wrap: on
line source

package fdl.old.test.transfer;

import static org.junit.Assert.assertEquals;

import org.junit.Test;

public class TestTransfer {
	@Test
	public void testTransfer() {
		int port1 = 10001;
		int port2 = 10002;
		Server server1 = new Server("Server1",port1);
		server1.start();
		Server server2 = new Server("Server2",port2);
		server2.start();
		ProtocolEngine pe = new ProtocolEngine("ProtocolEngine",port1,port2);
		pe.start();
		try {
			pe.join();
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		assertEquals(1,1);
	}
}