public void TestShoulPassFalseSmoothSentence() { Assert.AreEqual(Ex5.IsSmooth("Someone is outside the doorway"), false); }
public void TestShoulPassTrueSmoothSentence() { Assert.AreEqual(Ex5.IsSmooth("Marta appreciated deep perpendicular right trapezoids"), true); Assert.AreEqual(Ex5.IsSmooth("She eats super righteously"), true); }
static void Main(string[] args) { // Ex3.Run(); // Ex4.Run(); Ex5.Run(); }