Class UnitsInfoDto
- java.lang.Object
-
- org.evomaster.client.java.controller.api.dto.UnitsInfoDto
-
public class UnitsInfoDto extends Object
Information about the "units" in the SUT. In case of OO languages like Java and Kotlin, those will be "classes" Created by arcuri82 on 27-Sep-19.
-
-
Field Summary
Fields Modifier and Type Field Description int
numberOfBranches
The total number of branches in all units of the whole SUTint
numberOfLines
The total number of lines/statements/instructions in all units of the whole SUTint
numberOfReplacedMethodsInSut
Number of replaced method testability transformations.int
numberOfReplacedMethodsInThirdParty
Number of replaced method testability transformations.int
numberOfTrackedMethods
Number of tracked methods.Set<String>
unitNames
Then name of all the units (eg classes) in the SUT
-
Constructor Summary
Constructors Constructor Description UnitsInfoDto()
-
-
-
Field Detail
-
numberOfLines
public int numberOfLines
The total number of lines/statements/instructions in all units of the whole SUT
-
numberOfBranches
public int numberOfBranches
The total number of branches in all units of the whole SUT
-
numberOfReplacedMethodsInSut
public int numberOfReplacedMethodsInSut
Number of replaced method testability transformations. But only for SUT units.
-
numberOfReplacedMethodsInThirdParty
public int numberOfReplacedMethodsInThirdParty
Number of replaced method testability transformations. But only for third-party library units (ie all units not in the SUT).
-
numberOfTrackedMethods
public int numberOfTrackedMethods
Number of tracked methods. Those are special methods for which we explicitly keep track of how they are called (eg their inputs).
-
-