-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Labels
comp-fuzzingIssue is related to the fuzzingIssue is related to the fuzzing
Description
Description
Fuzzing should generate tests for methods without parameters. Usually, these methods have logic using internal object fields. For example:
public class NestedClasses {
public int field;
public boolean testObject() {
if (field > 10) {
return true;
}
return false;
}
}
Expected behavior
Fuzzing should provide several test with values for a field (for example, 10 and 11).
Environment
This problem is bound to the fact that fuzzer uses simple creation of this object. For example, fuzzer uses reflection to create this instance when method's class doesn't have public empty constructor.
Potential alternatives
There's no alternatives
Metadata
Metadata
Assignees
Labels
comp-fuzzingIssue is related to the fuzzingIssue is related to the fuzzing
Type
Projects
Status
Done