Trait

mutationtesting

MetricsResult

Related Doc: package mutationtesting

Permalink

sealed trait MetricsResult extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MetricsResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def compileErrors: Int

    Permalink

    The mutant resulted in a compiler error.

    The mutant resulted in a compiler error. This can happen in compiled languages. Don't spend too much attention looking at this mutant. It is not represented in your mutation score.

  2. abstract def killed: Int

    Permalink

    At least one test failed while this mutant was active.

    At least one test failed while this mutant was active. The mutant is killed. This is what you want, good job!

  3. abstract def noCoverage: Int

    Permalink

    No tests are executed to test this mutant, because the mutant is located in a part of the code that is not hit by any of your tests.

    No tests are executed to test this mutant, because the mutant is located in a part of the code that is not hit by any of your tests. This means the mutant also survived and your missing a test case for it.

  4. abstract def survived: Int

    Permalink

    All tests passed while this mutant was active.

    All tests passed while this mutant was active. the mutant survived. You're missing a test for it.

  5. abstract def timeout: Int

    Permalink

    The running of tests with this mutant active resulted in a timeout.

    The running of tests with this mutant active resulted in a timeout. For example, the mutant resulted in an infinite loop in your code. Don't spend too much attention to this mutant. It is counted as "detected". The logic here is that if this mutant were to be injected in your code, your CI build would detect it, because the tests will never complete.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  11. lazy val mutationScore: Double

    Permalink

    The total percentage of mutants that were killed.

  12. lazy val mutationScoreBasedOnCoveredCode: Double

    Permalink

    The total percentage of mutants that were killed based on the code coverage results.

  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. lazy val totalCovered: Int

    Permalink

    The number of mutants that your tests produce code coverage for.

  19. lazy val totalDetected: Int

    Permalink

    The number of mutants detected by your tests.

  20. lazy val totalInvalid: Int

    Permalink

    The number of mutants that are invalid.

    The number of mutants that are invalid. They couldn't be tested because they produce either a compile error.

  21. lazy val totalMutants: Int

    Permalink

    All mutants.

  22. lazy val totalUndetected: Int

    Permalink

    The number of mutants that are not detected by your tests.

  23. lazy val totalValid: Int

    Permalink

    The number of mutants that are valid.

    The number of mutants that are valid. They didn't result in a compile error or runtime error.

  24. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped