public void ThrowExceptionIfInputHasNegativeNumbers() { var input = "-1, 2, 3"; Assert.Throws <System.ArgumentException>(() => Calculator.Add(input), "Negatives not allowed"); }