Merge pull request #695 from dotnet/e2e-stderr
Assert StdErr is empty for E2E Test
This commit is contained in:
commit
f987810e44
1 changed files with 3 additions and 0 deletions
|
@ -147,6 +147,9 @@ namespace ConsoleApplication
|
|||
.Execute();
|
||||
|
||||
var outText = result.StdOut;
|
||||
var errText = result.StdErr;
|
||||
|
||||
Assert.Equal("", errText);
|
||||
Assert.Equal(EXPECTED_OUTPUT, outText);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue