public void MutationTest()
 {
     NotRandomMutation target = new NotRandomMutation();
     target.Mutation(_mutant);
     Assert.IsFalse(TwoIntArrayEquals(_mutant.Genotype, _subject.Genotype));
     Assert.IsTrue(IsItemsUnique(_mutant.Genotype));
     Assert.IsTrue(_mutant.TypeOfMutation == NotRandomMutation.MutationName);
 }