Console window now showing
- by CoffeeAddict
I have this in one of my NUnit tests. I'm using R# to step through my test. The console window is not popping up to show me the contents for that foreach loop...not sure what I'm missing but yes, there is data for it to loop through so it's not like there's no data here
foreach (PostEntry post in posts)
{
Console.WriteLine("id: " + post.Id);
Console.WriteLine("title: " + post.Title);
Console.WriteLine("body: " + post.Body);
Console.ReadLine();
}