fixed Hello World tests
This commit is contained in:
parent
579241f8db
commit
1c32adbeb9
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ namespace EndToEnd.Tests
|
||||||
var runCommand = new RunCommand()
|
var runCommand = new RunCommand()
|
||||||
.WithWorkingDirectory(projectDirectory)
|
.WithWorkingDirectory(projectDirectory)
|
||||||
.ExecuteWithCapturedOutput()
|
.ExecuteWithCapturedOutput()
|
||||||
.Should().Pass().And.HaveStdOutContaining("Hello World!");
|
.Should().Pass().And.HaveStdOutContaining("Hello, World!");
|
||||||
|
|
||||||
var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin");
|
var binDirectory = new DirectoryInfo(projectDirectory).Sub("bin");
|
||||||
binDirectory.Should().HaveFilesMatching("*.dll", SearchOption.AllDirectories);
|
binDirectory.Should().HaveFilesMatching("*.dll", SearchOption.AllDirectories);
|
||||||
|
@ -82,7 +82,7 @@ namespace EndToEnd.Tests
|
||||||
var runCommand = new RunCommand()
|
var runCommand = new RunCommand()
|
||||||
.WithWorkingDirectory(projectDirectory)
|
.WithWorkingDirectory(projectDirectory)
|
||||||
.ExecuteWithCapturedOutput()
|
.ExecuteWithCapturedOutput()
|
||||||
.Should().Pass().And.HaveStdOutContaining("Hello World!");
|
.Should().Pass().And.HaveStdOutContaining("Hello, World!");
|
||||||
}
|
}
|
||||||
|
|
||||||
[WindowsOnlyFact]
|
[WindowsOnlyFact]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue