def test_binary_mutator_large_pmut(self, rand_mock): rand_mock.return_value = 0 expected_result = [1, 2, 3] Mutators.G1DListMutatorIntegerBinary(self.genome, pmut=0.5) self.assertEqual(self.genome.genomeList, expected_result)
def test_binary_mutator_small_pmut(self, coin_flip_mock): coin_flip_mock.return_value = 1 expected_result = [0, 2, 3] Mutators.G1DListMutatorIntegerBinary(self.genome, pmut=0.1) self.assertEqual(self.genome.genomeList, expected_result)