예제 #1
0
파일: test14.py 프로젝트: migross76/build
 def testQuickBrown(self):
     self.assertEqual([3, 5, 5, 3, 5, 4, 3, 4, 3], strlen_list(["The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"]))
예제 #2
0
파일: test14.py 프로젝트: migross76/build
 def testEmpty(self):
     self.assertEqual([], strlen_list([]))
예제 #3
0
파일: test14.py 프로젝트: migross76/build
 def testTwo(self):
     self.assertEqual([2, 5], strlen_list(["Hi", "there"]))