Пример #1
0
 public void Format_Excption()
 {
     Assert.Throws <FormatException>(() => Goat.Latin("Ana are 7 me1re"));
 }
Пример #2
0
        public void Goat_Latin(string input, string expected)
        {
            var actual = Goat.Latin(input);

            Assert.AreEqual(expected, actual);
        }