I want to unit test the code below. I've been working with MSTest and I tried to learn Microsoft Moles and RhinoMocks. But I couldn't make neither of them help me. I know I can change the code drastically to use interfaces that make it more testable, but it would require me to code interfaces and implementations that encapsulate TcpClient, NetworkStream, StreamWriter and StreamReader.
I've already written integration test for this and I guess that someone proficient with moles can do unit tests for this quite easily without changing the code.
using (TcpClient tcpClient = new TcpClient(hostName, port))
using (NetworkStream stream = tcpClient.GetStream())
using (StreamWriter writer = new StreamWriter(stream))
using (StreamReader reader = new StreamReader(stream))
{
writer.AutoFlush = true;
writer.Write(message);
return reader.ReadLine();
}
writerand a method call toreader. Not a lot of behavior here, and not terribly interesting to test. Now testing classes that use this method would be interesting, so I'd totally make this class implement an interface, and test components that call into it. – Merlyn Morgan-Graham Dec 16 '11 at 12:33