예제 #1
0
파일: test02.py 프로젝트: migross76/build
 def testLesserEquals(self):
     self.assertEquals(10, max3(5, 10, 5))
예제 #2
0
파일: test02.py 프로젝트: migross76/build
 def testSecond(self):
     self.assertEquals(21, max3(19, 21, 20))
예제 #3
0
파일: test02.py 프로젝트: migross76/build
 def testThird(self):
     self.assertEquals(21, max3(20, 19, 21))
예제 #4
0
파일: test02.py 프로젝트: migross76/build
 def testFirst(self):
     self.assertEquals(21, max3(21, 19, 20))