Packages

p

utest

package utest

Created by haoyi on 1/24/14.

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

Type Members

  1. case class AssertionError (msg: String, captured: Seq[TestValue], 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.

    Simplified versions of the errors thrown during compilation, for use with the compileError macro. Contains only a single message and no position since things compiled using macros don't really have source positions.

  3. case class MultipleErrors (thrown: Throwable*) extends Exception with Product with Serializable
  4. case class NoSuchTestException (path: String*) extends Exception with Product with Serializable

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

  5. type Show = utest.asserts.Show
  6. case class SkippedOuterFailure (errorPath: Seq[String], outerError: Throwable) extends Exception with Product with Serializable
  7. abstract class TestSuite extends TestSuiteMacro with Asserts[DummyTypeclass] with Formatter

    Marker class used to mark an object as something containing tests.

    Marker class used to mark an object as something containing tests. Used for test-discovery by SBT.

    Annotations
    @EnableReflectiveInstantiation()
  8. trait TestSuiteMacro extends AnyRef
  9. case class TestValue (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

  10. implicit class TestableString extends AnyRef

    Extension methods to allow you to create tests via the "omg"-{ ...

    Extension methods to allow you to create tests via the "omg"-{ ... } syntax.

    Annotations
    @compileTimeOnly( ... )
  11. implicit class TestableSymbol extends AnyRef
    Annotations
    @compileTimeOnly( ... )

Value Members

  1. implicit val retryInterval: RetryInterval
  2. implicit val retryMax: RetryMax
  3. implicit def toTestSeq(t: Tree[Test]): TestTreeSeq

    Extension methods on Tree[Test] in order to conveniently run the tests and aggregate the results

  4. object *

    Placeholder object used to declare test cases which you don't want to bother naming.

    Placeholder object used to declare test cases which you don't want to bother naming. These test cases are named with sequential numbers starting from "0", "1", "2", etc.

  5. object CompileError
  6. object PlatformShims

    Platform specific stuff that differs between JVM and JS

  7. object TestSuite extends TestSuiteMacro

Inherited from AnyRef

Inherited from Any

Ungrouped