1234567891011121314 |
- Describe(is_plural)
- {
- It(test1){Assert::That(isPlural("dudes"), Equals(true));}
- It(test2){Assert::That(isPlural("flowers"), Equals(true));}
- It(test3){Assert::That(isPlural("checks"), Equals(true));}
- It(test4){Assert::That(isPlural("varies"), Equals(true));}
- It(test5){Assert::That(isPlural("efforts"), Equals(true));}
- It(test6){Assert::That(isPlural("mood"), Equals(false));}
- It(test7){Assert::That(isPlural("whiteboard"), Equals(false));}
- It(test8){Assert::That(isPlural("cow"), Equals(false));}
- It(test9){Assert::That(isPlural("word"), Equals(false));}
- It(test10){Assert::That(isPlural("love"), Equals(false));}
- It(test11){Assert::That(isPlural("silly"), Equals(false));}
- };
|