예제 #1
0
파일: test.py 프로젝트: teruhirok/python
 def test4(self):
     expect = "0"
     actual = Solution.multiply("", "123", None)
     self.assertEqual(expect, actual)
예제 #2
0
파일: test.py 프로젝트: teruhirok/python
 def test1(self):
     expect = "6"
     actual = Solution.multiply("", "2", "3")
     self.assertEqual(expect, actual)
예제 #3
0
파일: test.py 프로젝트: teruhirok/python
 def test2(self):
     expect = "56088"
     actual = Solution.multiply("", "123", "456")
     self.assertEqual(expect, actual)