Packages

p

es.weso.utils

testsuite

package testsuite

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class FailedResult(entry: TestId, msg: Option[String] = None, time: Option[FiniteDuration] = None, exception: Option[Throwable] = None) extends TestResult with Product with Serializable
  2. case class MoreThanOneTestEntry(ids: List[TestEntry], entries: List[TestEntry]) extends RuntimeException with Product with Serializable
  3. case class NotFoundTestEntry(id: TestId, entries: List[TestEntry]) extends RuntimeException with Product with Serializable
  4. case class PassedResult(entry: TestId, msg: Option[String] = None, time: Option[FiniteDuration] = None) extends TestResult with Product with Serializable
  5. case class Stats extends Product with Serializable
  6. case class TestConfig(maxTimePerTest: FiniteDuration, verbose: Boolean) extends Product with Serializable
  7. case class TestEntry(id: TestId, action: IO[TestResult]) extends Product with Serializable
  8. final case class TestId(id: String) extends AnyVal with Product with Serializable
  9. sealed abstract class TestResult extends Product with Serializable
  10. case class TestResults(passed: Vector[PassedResult], failed: Vector[FailedResult], skipped: List[TestId], notFound: List[TestId]) extends Product with Serializable

    Represents the results of running a list of tests

    Represents the results of running a list of tests

    passed

    tests that passed

    failed

    tests that failed

    skipped

    tests that were skipped

    notFound

    tests in the except list that were not found in the list of tests to run

  11. case class TestSuite(tests: List[TestEntry]) extends Product with Serializable
  12. case class TimeOut(name: String, duration: FiniteDuration) extends RuntimeException with Product with Serializable

Value Members

  1. object FailedResult extends Serializable
  2. object PassedResult extends Serializable
  3. object Stats extends Serializable
  4. object TestConfig extends Serializable
  5. object TestEntry extends Serializable
  6. object TestId extends Serializable
  7. object TestResult extends Serializable

Ungrouped