Day05: Statement and failing tests
This commit is contained in:
18
AdventOfCode2018.Tests/Day05_Tests.cs
Normal file
18
AdventOfCode2018.Tests/Day05_Tests.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
namespace AdventOfCode2018.Tests
|
||||
{
|
||||
[TestClass()]
|
||||
public class Day05_Tests
|
||||
{
|
||||
[TestMethod()]
|
||||
public void ResolvePart1__Test()
|
||||
{
|
||||
Day05 day05 = new Day05();
|
||||
|
||||
string result = day05.ResolvePart1("dabAcCaCBAcCcaDA");
|
||||
|
||||
Assert.AreEqual("10", result);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user