* Test of write method, of class InfiniteGetTCPClientImpl.
*/
@Test
public void testWrite_OutputStream_String() throws IOException {
System.out.println("write");
SocketEmulatorOutputStream out = new SocketEmulatorOutputStream();
String string = "";
InfiniteGetTCPClientImpl instance = new InfiniteGetTCPClientImpl();
instance.write(out, string);
}