コード例 #1
0
ファイル: hw3pr1tests.py プロジェクト: raxod502/HMC-Grader
 def testAdd3_2(self):
     self.assertEqual(hw.add_3([10, 11], [20, 25, 30], [12]), [42])
コード例 #2
0
 def testAdd3_2(self):
     self.assertEqual(hw.add_3( [10, 11], [20, 25, 30], [12] ), [42] )
コード例 #3
0
ファイル: hw3pr1tests.py プロジェクト: raxod502/HMC-Grader
 def testAdd3_1(self):
     self.assertEqual(hw.add_3([10, 11, 12], [20, 25, 30], [1, 2, 0]),
                      [31, 38, 42])
コード例 #4
0
 def testAdd3_1(self):
     self.assertEqual(hw.add_3( [10, 11, 12], [20, 25, 30], [1,2,0] ), [31, 38, 42] )