def test005_bothStrandsEmtpy(self):
     from dnaSequencing import strandsAreNotEmpty
     self.assertFalse(strandsAreNotEmpty('', ''), 'Both strands were empty')
 def test003_targetStrandEmpty(self):
     from dnaSequencing import strandsAreNotEmpty
     self.assertFalse(strandsAreNotEmpty('', 'aaa'), 'The target strand was empty')
 def test002_candidateStrandEmpty(self):
     from dnaSequencing import strandsAreNotEmpty
     self.assertFalse(strandsAreNotEmpty('aaa', ''), 'The candidate strand was empty')
 def test002_neitherStrandEmpty(self):
     from dnaSequencing import strandsAreNotEmpty
     self.assertTrue(strandsAreNotEmpty('aaa', 'bbb'), 'Neither the target or candidate strand were empty')