示例#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)