コード例 #1
0
ファイル: loopingtests.py プロジェクト: raxod502/HMC-Grader
 def testCountLengthNoMatch(self):
     self.assertEqual(hw.countLength(["AACC", "A", "T"], 2), 0)
コード例 #2
0
 def testCountLengthNoMatch(self):
     self.assertEqual(hw.countLength(["AACC", "A", "T"], 2), 0)
コード例 #3
0
ファイル: loopingtests.py プロジェクト: raxod502/HMC-Grader
 def testCountLengthMatch(self):
     self.assertEqual(hw.countLength(["ATA", "ATCG", "TTT", "A"], 3), 2)
コード例 #4
0
 def testCountLengthMatch(self):
     self.assertEqual(hw.countLength(["ATA", "ATCG", "TTT", "A"], 3), 2)