Skip to content

Commit bb5872b

Browse files
authored
Add C# 12 (#507)
1 parent 5598507 commit bb5872b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

content/languages/csharp/index.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ tags: [csharp]
88

99
## Versions
1010

11-
- 10.0 (.Net 6.0)
11+
- 10.0 (.NET 6.0)
12+
- 12.0 (.NET 8.0)
1213

1314
## Test Frameworks
1415

15-
[NUnit](http://www.nunit.org/)
16+
[NUnit](https://nunit.org/)
1617

1718
## Timeout
1819
12 seconds

content/languages/csharp/nunit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class AddTest
3232
[Test, Description("should add two numbers")]
3333
public void ShouldAddTwoNumbers()
3434
{
35-
Assert.AreEqual(3, Challenge.Add(1, 2));
35+
Assert.That(3, Is.EqualTo(Challenge.Add(1, 2)));
3636
}
3737
}
3838
```

0 commit comments

Comments
 (0)