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