Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
hlaueriksson committed Dec 30, 2024
1 parent 3e37ba4 commit cd777c6
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,15 @@ public void GEmojiSharp()
StandardError.Should().BeEmpty();
}

[Test]
public void Valid()
{
var (ExitCode, StandardOutput, StandardError) = Run(@"..\..\..\Packages\Valid-0.87.0-x64.zip");
ExitCode.Should().Be(1);
StandardOutput.Should().ContainAll(["PTRUN1401"]);
StandardError.Should().BeEmpty();
}

static (int ExitCode, string StandardOutput, string StandardError) Run(string args)
{
var startInfo = new ProcessStartInfo
Expand Down

0 comments on commit cd777c6

Please sign in to comment.