public void Format_Excption() { Assert.Throws <FormatException>(() => Goat.Latin("Ana are 7 me1re")); }
public void Goat_Latin(string input, string expected) { var actual = Goat.Latin(input); Assert.AreEqual(expected, actual); }