package domain
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- trait ClassBuilders extends AnyRef
- trait ClassCoverage extends AnyRef
- case class ClassRef(name: String) extends Product with Serializable
- sealed trait ClassType extends AnyRef
- class CodeGrid extends AnyRef
- case class Coverage() extends CoverageMetrics with MethodBuilders with Serializable with ClassBuilders with PackageBuilders with FileBuilders with Product
- trait CoverageMetrics extends AnyRef
- trait FileBuilders extends AnyRef
- case class Location(packageName: String, className: String, fullClassName: String, classType: ClassType, method: String, sourcePath: String) extends Product with Serializable
- packageName
the name of the enclosing package
- className
the name of the closest enclosing class
- fullClassName
the fully qualified name of the closest enclosing class
- case class MeasuredClass(fullClassName: String, statements: Iterable[Statement]) extends CoverageMetrics with MethodBuilders with Product with Serializable
- case class MeasuredFile(source: String, statements: Iterable[Statement]) extends CoverageMetrics with ClassCoverage with ClassBuilders with Product with Serializable
- case class MeasuredMethod(name: String, statements: Iterable[Statement]) extends CoverageMetrics with Product with Serializable
- case class MeasuredPackage(name: String, statements: Iterable[Statement]) extends CoverageMetrics with ClassCoverage with ClassBuilders with FileBuilders with Product with Serializable
- trait MethodBuilders extends AnyRef
- trait PackageBuilders extends AnyRef
- case class Statement(location: Location, id: Int, start: Int, end: Int, line: Int, desc: String, symbolName: String, treeName: String, branch: Boolean, count: Int = 0, ignored: Boolean = false, tests: Set[String] = mutable.Set[String]()) extends Serializable with Product
- sealed trait StatementStatus extends AnyRef
Value Members
- object ClassRef extends Serializable
- object ClassType
- object Constants
- object DoubleFormat
- case object Invoked extends StatementStatus with Product with Serializable
- case object NoData extends StatementStatus with Product with Serializable
- case object NotInvoked extends StatementStatus with Product with Serializable