utest

framework

package framework

Visibility
  1. Public
  2. All

Type Members

  1. case class AssertionError(msg: String, captured: Seq[LoggedValue], cause: Throwable = null) extends java.lang.AssertionError with Product with Serializable

    A special AssertionError thrown by utest's macro-powered asserts that contains metadata about local variables used in the assert expression.

  2. trait CompileError extends AnyRef

    Simplified versions of the errors thrown during compilation, for use with the compileError macro.

  3. trait Formatter extends AnyRef

    Default implementation of Formatter, also used by the default SBT test framework.

  4. case class LoggedValue(name: String, tpeName: String, value: Any) extends Product with Serializable

    Information about a value that was logged in one of the macro-powered assert functions

  5. case class MultipleErrors(thrown: Throwable*) extends Exception with Product with Serializable

  6. case class NoSuchTestException(path: String*) extends Exception with Product with Serializable

    Indicates that there was no test to run at the path you provided

  7. case class Result(name: String, value: Try[Any], milliDuration: Long) extends Product with Serializable

    A single test's result after execution.

  8. case class SkippedOuterFailure(errorPath: Seq[String], outerError: Throwable) extends Exception with Product with Serializable

  9. case class Test(name: String, TestThunkTree: TestThunkTree) extends Product with Serializable

    Represents the metadata around a single test in a TestTreeSeq.

  10. case class TestPath(value: Seq[String]) extends Product with Serializable

  11. class TestThunkTree extends AnyRef

    A tree of nested lexical scopes that accompanies the tree of tests.

  12. class TestTreeSeq extends AnyRef

    Extension methods on TreeSeq[Test]

  13. case class Tree[+T](value: T, children: Seq[Tree[T]]) extends Product with Serializable

    An immutable tree with each node containing a value, and a Seq of children.

Value Members

  1. object ArgParse

    Crappy but good-enough version of a command-line parsing library

  2. object CompileError

  3. object ExecutionContext

  4. object Test extends Serializable

  5. object TestPath extends Serializable

  6. object TreeBuilder

    Created by haoyi on 3/11/16.

Ungrouped