public void GetSelectedCategory_WhenInputDoesNotStartWithDigit_Throws() { var input = "Q"; TestDelegate del = () => _sut.GetSelectedCategory(input); Assert.Throws <ArgumentException>(del); }