Open jpaulodiniz opened 5 years ago
Using mutant schemata approach replacing expressions by methods. E.g.: c = a + b; -> c = AOR_(a, b, mut1, ..., mutN);
c = a + b;
c = AOR_(a, b, mut1, ..., mutN);
Then, create a library to support such methods.
Take in account expressions like if (a != null && a.size() > 0) ..., when mutated, causes NullPointerException even without any mutants being active.
if (a != null && a.size() > 0) ...
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.