예제 #1
0
파일: test.py 프로젝트: atooma/bbrepotest
 def test_mul(self):
     bb = BBRepoTest(5, 5)
     self.assertEqual(bb.mul(), 25)
예제 #2
0
파일: test.py 프로젝트: atooma/bbrepotest
 def test_div(self):
     bb = BBRepoTest(5, 5)
     self.assertEqual(bb.div(), 1)
예제 #3
0
파일: test.py 프로젝트: atooma/bbrepotest
 def test_sum(self):
     bb = BBRepoTest(5, 6)
     self.assertEqual(bb.sum(), 11)