public void ShouldReturnValidValue(string testInput, string expectedOutput)
 => Assert.AreEqual(expectedOutput, NextBiggestNumber.GetNext(testInput));
 public void ShouldThrowInvalidArgumentException(string testInput)
 => Assert.Throws <ArgumentException>(() => NextBiggestNumber.GetNext(testInput));