예제 #1
0
파일: test03.py 프로젝트: migross76/build
 def testList(self):
     self.assertEqual(5, mylength("abcde fghij klmno pqrst uvwxy".split(" ")))
예제 #2
0
파일: test03.py 프로젝트: migross76/build
 def testZero(self):
     self.assertEqual(0, mylength(""))
예제 #3
0
파일: test03.py 프로젝트: migross76/build
 def testLong(self):
     self.assertEqual(29, mylength("abcde fghij klmno pqrst uvwxy"))
예제 #4
0
파일: test03.py 프로젝트: migross76/build
 def testNormal(self):
     self.assertEqual(4, mylength("four"))