We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
actual
expected
1 parent c0f5cc1 commit 310200bCopy full SHA for 310200b
content/languages/csharp/nunit.md
@@ -32,7 +32,7 @@ public class AddTest
32
[Test, Description("should add two numbers")]
33
public void ShouldAddTwoNumbers()
34
{
35
- Assert.That(3, Is.EqualTo(Challenge.Add(1, 2)));
+ Assert.That(Challenge.Add(1, 2), Is.EqualTo(3), "1 + 2 should equal 3");
36
}
37
38
```
0 commit comments