test driven development 源码
描述:wordCounter() 测试:“如果段落只有一个单词,则应该返回1。代码:const text =“ Hello”; wordCounter(text);预期输出:1 测试:“如果段落中有两个单词,则应该返回2。” 代码:const text =“ hello there”; wordCounter(text); 预期产量:2 测试:“对于空字符串,它应该返回0。” 代码:wordCounter(“”); 预期输出:0 测试:“对于只有空格的字符串,它应该返回0。” 代码:wordCounter(“”); 预期输出:0 测试:“它不应将数字视为单词。” 代码:wordCounter(“ hi there 77 19”); 预期产量:2 描述:numberOfOccurencesInText()测试:“对于空字符串,它应该返回0次出现一个单词。” 代码:const te
用户评论