Trait

org.scalatest.fixture

AsyncTestRegistration

Related Doc: package fixture

Permalink

trait AsyncTestRegistration extends AnyRef

Self Type
AsyncTestRegistration with Suite
Source
AsyncTestRegistration.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AsyncTestRegistration
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def registerIgnoredTest(testText: String, testTags: Tag*)(testFun: ((AsyncTestRegistration.this)#FixtureParam) ⇒ Future[Assertion]): Unit

    Permalink

    Register an ignored test, note that an ignored test will not be executed, but it will cause a TestIgnored event to be fired.

    Register an ignored test, note that an ignored test will not be executed, but it will cause a TestIgnored event to be fired.

    testText

    the test text

    testTags

    the test tags

    testFun

    the test function

  2. abstract def registerTest(testText: String, testTags: Tag*)(testFun: ((AsyncTestRegistration.this)#FixtureParam) ⇒ Future[Assertion]): Unit

    Permalink

    Register a test.

    Register a test.

    testText

    the test text

    testTags

    the test tags

    testFun

    the test function