Пример #1
0
        public void Number_substitute_check_passes_for_expected_numbers(int target, int input, bool expected)
        {
            IPipe pipe = new NumberSubstitutePipe(target, string.Empty);

            bool actual = pipe.Check(input);

            Assert.Equal(expected, actual);
        }