コード例 #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"]))