コード例 #1
0
ファイル: Ex5Test.cs プロジェクト: BurgheleaDaniel/.net
 public void TestShoulPassFalseSmoothSentence()
 {
     Assert.AreEqual(Ex5.IsSmooth("Someone is outside the doorway"), false);
 }
コード例 #2
0
ファイル: Ex5Test.cs プロジェクト: BurgheleaDaniel/.net
 public void TestShoulPassTrueSmoothSentence()
 {
     Assert.AreEqual(Ex5.IsSmooth("Marta appreciated deep perpendicular right trapezoids"), true);
     Assert.AreEqual(Ex5.IsSmooth("She eats super righteously"), true);
 }
コード例 #3
0
 static void Main(string[] args)
 {
     // Ex3.Run();
     // Ex4.Run();
     Ex5.Run();
 }