Migrate tests to XUnit

This commit is contained in:
2023-12-01 11:51:08 +01:00
parent 9054ddf139
commit 52c9dab8a6
37 changed files with 431 additions and 451 deletions

View File

@@ -1,11 +1,10 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Xunit;
namespace AdventOfCode2018.Tests
{
[TestClass]
public class Day12_Tests
{
[TestMethod]
[Fact]
public void ResolvePart1__Test()
{
Day12 day = new Day12();
@@ -30,7 +29,7 @@ namespace AdventOfCode2018.Tests
"####. => #",
});
Assert.AreEqual("325", result);
Assert.Equal("325", result);
}
}
}