Exemplo n.º 1
0
        public void Part1()
        {
            var answer = Day05.Part1();

            answer.Should().NotBe(568);
            answer.Should().Be(255);
        }
Exemplo n.º 2
0
        public void Part2()
        {
            var answer = Day05.Part2();

            answer.Should().NotBe(-2);
            answer.Should().Be(55);
        }
Exemplo n.º 3
0
 public void Nice2(string input, bool expected)
 {
     Day05.IsNice2(input).Should().Be(expected);
 }