Day08 part 1
This commit is contained in:
18
AdventOfCode2018.Tests/Day08_Tests.cs
Normal file
18
AdventOfCode2018.Tests/Day08_Tests.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user