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

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

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