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
Learn more about member selection
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.

  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.

  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"-{ .

  11. implicit class TestableSymbol extends AnyRef

Value Members

  1. object *

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

  2. object CompileError

  3. object PlatformShims

    Platform specific stuff that differs between JVM and JS

  4. object TestSuite extends TestSuiteMacro

  5. package asserts

    Macro powered asserts of all shapes and sizes.

  6. package framework

  7. implicit val retryInterval: RetryInterval

  8. implicit val retryMax: RetryMax

  9. package runner

  10. implicit def toTestSeq(t: Tree[Test]): TestTreeSeq

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

Inherited from AnyRef

Inherited from Any

Ungrouped