Fix tests

This commit is contained in:
2023-12-01 11:11:44 +01:00
parent 55243531f4
commit 9054ddf139
34 changed files with 193 additions and 188 deletions

View File

@@ -8,12 +8,12 @@ using System.Threading.Tasks;
namespace AdventOfCode2018.Tests
{
[TestClass()]
[TestClass]
public class Day15_Tests
{
#region ResolvePart1
[TestMethod()]
[TestMethod]
public void ResolvePart1__Test1()
{
Day15 day = new Day15();
@@ -31,7 +31,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("27730", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart1__Test2()
{
Day15 day = new Day15();
@@ -49,7 +49,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("36334", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart1__Test3()
{
Day15 day = new Day15();
@@ -67,7 +67,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("39514", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart1__Test4()
{
Day15 day = new Day15();
@@ -85,7 +85,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("27755", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart1__Test5()
{
Day15 day = new Day15();
@@ -103,7 +103,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("28944", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart1__Test6()
{
Day15 day = new Day15();
@@ -127,7 +127,7 @@ namespace AdventOfCode2018.Tests
#region ResolvePart2
[TestMethod()]
[TestMethod]
public void ResolvePart2__Test1()
{
Day15 day = new Day15();
@@ -145,7 +145,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("4988", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart2__Test3()
{
Day15 day = new Day15();
@@ -163,7 +163,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("31284", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart2__Test4()
{
Day15 day = new Day15();
@@ -181,7 +181,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("3478", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart2__Test5()
{
Day15 day = new Day15();
@@ -199,7 +199,7 @@ namespace AdventOfCode2018.Tests
Assert.AreEqual("6474", result);
}
[TestMethod()]
[TestMethod]
public void ResolvePart2__Test6()
{
Day15 day = new Day15();