Packages

package config

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package implicits

Type Members

  1. final case class CommandRunner(command: String, args: String) extends TestRunner with Product with Serializable
  2. final case class Config(mutate: Seq[String] = Seq("**/main/scala/**.scala"), testFilter: Seq[String] = Seq(), baseDir: File = File.currentWorkingDirectory, reporters: Set[ReporterType] = Set(Console, Html), files: Option[Seq[String]] = None, excludedMutations: ExcludedMutations = ExcludedMutations(), thresholds: Thresholds = Thresholds(), dashboard: DashboardOptions = DashboardOptions()) extends Product with Serializable
  3. final case class DashboardOptions(baseUrl: String = "https://dashboard.stryker-mutator.io", reportType: DashboardReportType = Full, project: Option[String] = None, version: Option[String] = None, module: Option[String] = None) extends Product with Serializable
  4. sealed trait DashboardReportType extends AnyRef
  5. final case class ExcludedMutations(_exclusions: Set[String] = Set.empty) extends Product with Serializable
  6. case class Partition(negative: Seq[Regex], positive: Seq[Regex]) extends Product with Serializable
  7. case class Regex(regex: String) extends Product with Serializable
  8. sealed trait ReporterType extends AnyRef
  9. class TestFilter extends AnyRef
  10. sealed trait TestRunner extends AnyRef
  11. final case class Thresholds(high: Int = 80, low: Int = 60, break: Int = 0) extends Product with Serializable

Value Members

  1. object Config extends Serializable
  2. object ConfigReader extends ConfigReaderImplicits with Logging
  3. case object Console extends ReporterType with Product with Serializable
  4. case object Dashboard extends ReporterType with Product with Serializable
  5. case object Full extends DashboardReportType with Product with Serializable
  6. case object Html extends ReporterType with Product with Serializable
  7. case object Json extends ReporterType with Product with Serializable
  8. case object MutationScoreOnly extends DashboardReportType with Product with Serializable
  9. object TestFilter

Ungrouped