Skip to content

Instantly share code, notes, and snippets.

@asierba
Last active September 18, 2024 19:18
Show Gist options
  • Save asierba/3f51a7b82011bd171299fae307580cd8 to your computer and use it in GitHub Desktop.
Save asierba/3f51a7b82011bd171299fae307580cd8 to your computer and use it in GitHub Desktop.
How to mock console in unit tests - with multiple readlines
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("What's your name?");
var name = Console.ReadLine();
Console.WriteLine("How old are you?");
var age = Console.ReadLine();
Console.WriteLine("Hello {0}, you are {1} years old!!", name, age);
}
}
[Fact]
public void TestConsoleMultpleInputs()
{
var output = new StringWriter();
Console.SetOut(output);
var input = new StringReader(@"Somebody
99");
Console.SetIn(input);
Program.Main(new string[] { });
var expectedOutput = @"What's your name?
How old are you?
Hello Somebody, you are 99 years old!!
";
Assert.Equal(expectedOutput, output.ToString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment