Day02 part 2
This commit is contained in:
@@ -22,5 +22,23 @@ namespace AdventOfCode2018.Tests
|
||||
|
||||
Assert.AreEqual("12", result);
|
||||
}
|
||||
|
||||
[TestMethod()]
|
||||
public void ResolveDay02_Part2__Test()
|
||||
{
|
||||
Day02 day02 = new Day02();
|
||||
|
||||
string result = day02.ResolveDay02_Part2(new string[] {
|
||||
"abcde",
|
||||
"fghij",
|
||||
"klmno",
|
||||
"pqrst",
|
||||
"fguij",
|
||||
"axcye",
|
||||
"wvxyz",
|
||||
});
|
||||
|
||||
Assert.AreEqual("fgij", result);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user