jpaulodiniz / MutVariants

Mutation (schemata) generator tool for Java systems.
1 stars 0 forks source link

New mutant schemata generation type #1

Open jpaulodiniz opened 5 years ago

jpaulodiniz commented 5 years ago

Using mutant schemata approach replacing expressions by methods. E.g.: c = a + b; -> c = AOR_(a, b, mut1, ..., mutN);

Then, create a library to support such methods.

jpaulodiniz commented 5 years ago

Take in account expressions like if (a != null && a.size() > 0) ..., when mutated, causes NullPointerException even without any mutants being active.