view src/fdl/test/transfer/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.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);
	}
}