示例#1
0
        public void Part1GetBathroomCodeReturnsCorrectValue(string instructions, string expected)
        {
            var sut = new Day2Part1(instructions);

            var actual = sut.GetBathroomCode();

            Assert.Equal(expected, actual);
        }