Trait

mutationtesting

FileOps

Related Doc: package mutationtesting

Permalink

sealed trait FileOps extends MetricsResult

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

Abstract Value Members

  1. abstract val mutants: Iterable[MetricMutant]

    Permalink

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. lazy val 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.

    Definition Classes
    FileOpsMetricsResult
  7. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    Any
  12. lazy val 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!

    Definition Classes
    FileOpsMetricsResult
  13. lazy val mutationScore: Double

    Permalink

    The total percentage of mutants that were killed.

    The total percentage of mutants that were killed.

    Definition Classes
    MetricsResult
  14. lazy val mutationScoreBasedOnCoveredCode: Double

    Permalink

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

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

    Definition Classes
    MetricsResult
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. lazy val 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.

    Definition Classes
    FileOpsMetricsResult
  17. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  19. lazy val 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.

    Definition Classes
    FileOpsMetricsResult
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. lazy val 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.

    Definition Classes
    FileOpsMetricsResult
  22. def toString(): String

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

    Permalink

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

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

    Definition Classes
    MetricsResult
  24. lazy val totalDetected: Int

    Permalink

    The number of mutants detected by your tests.

    The number of mutants detected by your tests.

    Definition Classes
    MetricsResult
  25. 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.

    Definition Classes
    MetricsResult
  26. lazy val totalMutants: Int

    Permalink

    All mutants.

    All mutants.

    Definition Classes
    MetricsResult
  27. lazy val totalUndetected: Int

    Permalink

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

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

    Definition Classes
    MetricsResult
  28. 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.

    Definition Classes
    MetricsResult
  29. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. 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 MetricsResult

Inherited from AnyRef

Inherited from Any

Ungrouped