utest

package utest

Created by haoyi on 1/24/14.

Linear Supertypes
Asserts, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. utest
  2. Asserts
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. implicit class ArrowAssert extends AnyRef

    Provides a nice syntax for asserting things are equal, that is pretty enough to embed in documentation and examples

  2. case class AssertionError(msgPrefix: 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.

  3. trait CompileError extends AnyRef

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

  4. case class NoSuchTestException(path: Seq[String]*) extends Exception with Product with Serializable

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

  5. case class QueryParseError(input: String, msg: String) extends Exception with Product with Serializable

  6. type Show = utest.asserts.Show

  7. class TestQueryParser extends AnyRef

    Parses query strings.

  8. abstract class TestSuite extends Formatter with Executor

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

  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

  12. case class Tests(nameTree: Tree[String], callTree: TestCallTree) extends Product with Serializable

    Represents a single hierarchy of tests, arranged in a tree structure, with every node having a name and an associated executable test.

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 TestQueryParser

  5. object TestRunner

    Created by lihaoyi on 12/9/17.

  6. object TestSuite

  7. object Tests extends Serializable

  8. def assert(exprs: Boolean*): Unit

    Checks that one or more expressions are true; otherwises raises an exception with some debugging info

    Checks that one or more expressions are true; otherwises raises an exception with some debugging info

    Definition Classes
    Asserts
    Annotations
    @macroImpl( ... )
  9. def assertMatch(t: Any)(pf: PartialFunction[Any, Unit]): Unit

    Asserts that the given value matches the PartialFunction.

    Asserts that the given value matches the PartialFunction. Useful for using pattern matching to validate the shape of a data structure.

    Definition Classes
    Asserts
    Annotations
    @macroImpl( ... )
  10. package asserts

  11. def compileError(expr: String): CompileError

    Asserts that the given expression fails to compile, and returns a utest.CompileError containing the message of the failure.

    Asserts that the given expression fails to compile, and returns a utest.CompileError containing the message of the failure. If the expression compile successfully, this macro itself will raise a compilation error.

    Definition Classes
    Asserts
    Annotations
    @macroImpl( ... )
  12. def continually(exprs: Boolean*): Unit

    Checks that one or more expressions all remain true within a certain period of time.

    Checks that one or more expressions all remain true within a certain period of time. Polls at a regular interval to check this.

    Definition Classes
    Asserts
    Annotations
    @macroImpl( ... )
  13. def eventually(exprs: Boolean*): Unit

    Checks that one or more expressions all become true within a certain period of time.

    Checks that one or more expressions all become true within a certain period of time. Polls at a regular interval to check this.

    Definition Classes
    Asserts
    Annotations
    @macroImpl( ... )
  14. package framework

  15. def intercept[T](exprs: Unit)(implicit arg0: ClassTag[T]): T

    Asserts that the given block raises the expected exception.

    Asserts that the given block raises the expected exception. The exception is returned if raised, and an AssertionError is raised if the expected exception does not appear.

    Definition Classes
    Asserts
    Annotations
    @macroImpl( ... )
  16. final def retry[T](n: Int)(body: ⇒ T): T

    Definition Classes
    Asserts
    Annotations
    @tailrec()
  17. implicit val retryInterval: RetryInterval

  18. implicit val retryMax: RetryMax

  19. package runner

  20. package ufansi

Inherited from Asserts

Inherited from AnyRef

Inherited from Any

Ungrouped