Skip to content

Commit

Permalink
Merge pull request #1004 from hcoles/cleanup/verifier-migration
Browse files Browse the repository at this point in the history
Cleanup/verifier migration
  • Loading branch information
hcoles authored Mar 23, 2022
2 parents a4445a9 + dbf947a commit f4f6548
Show file tree
Hide file tree
Showing 23 changed files with 2,253 additions and 2,311 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.util.Map;

public enum BigDecimalMutator implements MethodMutatorFactory {
INSTANCE;
EXPERIMENTAL_BIG_DECIMAL;

@Override
public MethodVisitor create(MutationContext context, MethodInfo info, MethodVisitor visitor) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

@Deprecated
// use MutatorVerifierStart instead
public abstract class MutatorTestBase {

protected GregorMutater engine;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@

public class ArgumentPropagationMutatorTest extends MutatorTestBase {

MutatorVerifierStart v = MutatorVerifierStart.forMutator(EXPERIMENTAL_ARGUMENT_PROPAGATION);
MutatorVerifierStart v = MutatorVerifierStart.forMutator(EXPERIMENTAL_ARGUMENT_PROPAGATION)
.notCheckingUnMutatedValues();

@Before
public void setupEngineToUseReplaceMethodWithArgumentOfSameTypeAsReturnValueMutator() {
Expand Down
Loading

0 comments on commit f4f6548

Please sign in to comment.