This commit is contained in:
2020-12-07 07:30:50 +01:00
parent 88e67029f9
commit 906463d28a
3 changed files with 847 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace AdventOfCode2020.Tests
{
[TestClass()]
public class Day07_Tests
{
[TestMethod()]
public void ResolvePart1__Example()
{
var day = new Day07();
string result = day.ResolvePart1(new string[] {
"light red bags contain 1 bright white bag, 2 muted yellow bags.",
"dark orange bags contain 3 bright white bags, 4 muted yellow bags.",
"bright white bags contain 1 shiny gold bag.",
"muted yellow bags contain 2 shiny gold bags, 9 faded blue bags.",
"shiny gold bags contain 1 dark olive bag, 2 vibrant plum bags.",
"dark olive bags contain 3 faded blue bags, 4 dotted black bags.",
"vibrant plum bags contain 5 faded blue bags, 6 dotted black bags.",
"faded blue bags contain no other bags.",
"dotted black bags contain no other bags.",
});
Assert.AreEqual("4", result);
}
[TestMethod()]
public void ResolvePart2__Example()
{
var day = new Day07();
string result = day.ResolvePart2(new string[] {
"shiny gold bags contain 2 dark red bags.",
"dark red bags contain 2 dark orange bags.",
"dark orange bags contain 2 dark yellow bags.",
"dark yellow bags contain 2 dark green bags.",
"dark green bags contain 2 dark blue bags.",
"dark blue bags contain 2 dark violet bags.",
"dark violet bags contain no other bags.",
});
Assert.AreEqual("126", result);
}
}
}