Пример #1
0
        public void TestMulti(char digit1, char digit2, int expectedValue)
        {
            var strProblems = new StringProblems();

            var actualValue = strProblems.multi(digit1, digit2);

            Assert.Equal <int>(expectedValue, actualValue);
        }