package testing
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- sealed trait SingleTestSummary extends AnyRef
Sealed hierarchy that models 3 possible outcomes of single test case.
Sealed hierarchy that models 3 possible outcomes of single test case. I wanted to model this a discriminated union type and due to gson serialization, the best solution I was able to find at that moment was additional kind field. Each class has a smart constructor available in the companion objects which sets value of kind correctly.
- sealed trait TestSuiteEvent extends AnyRef
- trait TestSuiteEventHandler extends AnyRef
- final case class TestSuiteSummary(suiteName: String, duration: Long, tests: List[SingleTestSummary]) extends Product with Serializable
Summary of test suite execution which is being send to the dap client.
Summary of test suite execution which is being send to the dap client. Because of gson serialization, this class uses Java List rather than a scala collection.
Value Members
- object SingleTestResult
- object TestSuiteEvent
- object TestSuiteEventHandler
- object TestUtils