Class 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 Detail

      • unitNames

        public Set<String> unitNames
        Then name of all the units (eg classes) in the SUT
      • 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).
    • Constructor Detail

      • UnitsInfoDto

        public UnitsInfoDto()