46 lines
1.7 KiB
C#
46 lines
1.7 KiB
C#
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);
|
|
}
|
|
}
|
|
} |