Day08 part 1

This commit is contained in:
2018-12-11 21:02:22 +01:00
parent ef84354e66
commit e00c496a95
7 changed files with 184 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace AdventOfCode2018.Tests
{
[TestClass()]
public class Day08_Tests
{
[TestMethod()]
public void ResolvePart1__Test()
{
Day08 day = new Day08();
string result = day.ResolvePart1(new string[] { "2 3 0 3 10 11 12 1 1 0 1 99 2 1 1 2", });
Assert.AreEqual("138", result);
}
}
}