コード例 #1
0
ファイル: Day19Test.cs プロジェクト: therealjawss/aoc2020
        public void conforms(string s, bool expected)
        {
            var d = new Day19();

            d.GetInput();
            d.ParseInput(d.Input);
            d.Conforms(s).Should().Be(expected);
        }