Skip to content

Commit

Permalink
Add C# 12 (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazk authored Nov 1, 2024
1 parent 5598507 commit bb5872b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions content/languages/csharp/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ tags: [csharp]

## Versions

- 10.0 (.Net 6.0)
- 10.0 (.NET 6.0)
- 12.0 (.NET 8.0)

## Test Frameworks

[NUnit](http://www.nunit.org/)
[NUnit](https://nunit.org/)

## Timeout
12 seconds
Expand Down
2 changes: 1 addition & 1 deletion content/languages/csharp/nunit.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AddTest
[Test, Description("should add two numbers")]
public void ShouldAddTwoNumbers()
{
Assert.AreEqual(3, Challenge.Add(1, 2));
Assert.That(3, Is.EqualTo(Challenge.Add(1, 2)));
}
}
```
Expand Down

0 comments on commit bb5872b

Please sign in to comment.