Пример #1
0
        public void GetSelectedCategory_WhenInputDoesNotStartWithDigit_Throws()
        {
            var input = "Q";

            TestDelegate del = () => _sut.GetSelectedCategory(input);

            Assert.Throws <ArgumentException>(del);
        }