Describe(comparing_length_of_two_words) { It(test1){Assert::That(comp("AB", "CD"), Equals(true));} It(test2){Assert::That(comp("ABC", "DE"), Equals(false));} It(test3){Assert::That(comp("hello", "edabit"), Equals(false));} It(test4){Assert::That(comp("meow", "woof"), Equals(true));} It(test5){Assert::That(comp("jrnvjrnnt", "cvjknfjvmfvnfjn"), Equals(false));} It(test6){Assert::That(comp("jkvnjrt", "krnf"), Equals(false));} It(test7){Assert::That(comp("Facebook", "Snapchat"), Equals(true));} };