You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
verifier.Error("ConsoleApp.Run(args, (int x, int y) => { Console.Write((x + y)); });","--x 10 y 20").Should().Contain("Argument 'y' is not recognized.");
31
+
verifier.Error("ConsoleApp.Run(args, (int x, int y) => { Console.Write((x + y)); });","--x 10 y 20").ShouldContain("Argument 'y' is not recognized.");
33
32
34
-
Environment.ExitCode.Should().Be(1);
33
+
Environment.ExitCode.ShouldBe(1);
35
34
Environment.ExitCode=0;
36
35
}
37
36
@@ -48,7 +47,7 @@ The field x must be between 1 and 10.
0 commit comments