-
-
Save asierba/3f51a7b82011bd171299fae307580cd8 to your computer and use it in GitHub Desktop.
How to mock console in unit tests - with multiple readlines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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