Packages

p

testz

package testz

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. testz
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class Fail extends Result
  2. abstract class Harness[T] extends AnyRef

    The most boring Harness you can think of: pure tests with no resources.

    The most boring Harness you can think of: pure tests with no resources. Any harness type should be convertible to a Harness; it's the lingua franca of tests. If you write tests using Harness, they can be adapted to work with any suite type later.

  3. sealed abstract class Result extends AnyRef

    The type of test results.

    The type of test results. A two-branch sum, either S, or F(failures). F can contain 0 or more failure messages, and/or throwables. The empty case of F is deliberately included; it's the user's choice whether to add failure information.

  4. final class TestOutput extends AnyRef

Value Members

  1. def assert(b: Boolean): Result
  2. object Fail
  3. object Result
  4. object Succeed extends Result with Product with Serializable
  5. object TestOutput

Inherited from AnyRef

Inherited from Any

Ungrouped