case class ScoverageOptions(excludedPackages: Seq[String], excludedFiles: Seq[String], excludedSymbols: Seq[String], dataDir: String, reportTestName: Boolean, sourceRoot: String) extends Product with Serializable

Base options that can be passed into scoverage

excludedPackages

packages to be excluded in coverage

excludedFiles

files to be excluded in coverage

excludedSymbols

symbols to be excluded in coverage

dataDir

the directory that the coverage files should be written to

reportTestName

whether or not the test names should be reported

sourceRoot

the source root of your project

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScoverageOptions
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ScoverageOptions(excludedPackages: Seq[String], excludedFiles: Seq[String], excludedSymbols: Seq[String], dataDir: String, reportTestName: Boolean, sourceRoot: String)

    excludedPackages

    packages to be excluded in coverage

    excludedFiles

    files to be excluded in coverage

    excludedSymbols

    symbols to be excluded in coverage

    dataDir

    the directory that the coverage files should be written to

    reportTestName

    whether or not the test names should be reported

    sourceRoot

    the source root of your project

Value Members

  1. val dataDir: String
  2. val excludedFiles: Seq[String]
  3. val excludedPackages: Seq[String]
  4. val excludedSymbols: Seq[String]
  5. val reportTestName: Boolean
  6. val sourceRoot: String