public static enum GenInputsAbstract.MethodSelectionMode extends java.lang.Enum<GenInputsAbstract.MethodSelectionMode>
| Enum Constant and Description |
|---|
BLOODHOUND
The "Bloodhound" technique from the GRT paper prioritizes methods with lower branch coverage.
|
UNIFORM
Select methods randomly with uniform probability.
|
| Modifier and Type | Method and Description |
|---|---|
static GenInputsAbstract.MethodSelectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GenInputsAbstract.MethodSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenInputsAbstract.MethodSelectionMode UNIFORM
public static final GenInputsAbstract.MethodSelectionMode BLOODHOUND
-Xbootclasspath/a:/path/to/jacocoagent.jar
-javaagent:/path/to/jacocoagent.jar. Note that the Jacoco coverage tool cannot collect any
data from the Java runtime libraries, e.g., java.lang; thus they are not useful
candidates for the Bloodhound technique.public static GenInputsAbstract.MethodSelectionMode[] values()
for (GenInputsAbstract.MethodSelectionMode c : GenInputsAbstract.MethodSelectionMode.values()) System.out.println(c);
public static GenInputsAbstract.MethodSelectionMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null