We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5598507 commit bb5872bCopy full SHA for bb5872b
content/languages/csharp/index.md
@@ -8,11 +8,12 @@ tags: [csharp]
8
9
## Versions
10
11
-- 10.0 (.Net 6.0)
+- 10.0 (.NET 6.0)
12
+- 12.0 (.NET 8.0)
13
14
## Test Frameworks
15
-[NUnit](http://www.nunit.org/)
16
+[NUnit](https://nunit.org/)
17
18
## Timeout
19
12 seconds
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.AreEqual(3, Challenge.Add(1, 2));
+ Assert.That(3, Is.EqualTo(Challenge.Add(1, 2)));
36
}
37
38
```
0 commit comments