Trait

org.scalatest

TestRegistration

Related Doc: package scalatest

Permalink

trait TestRegistration extends AnyRef

Trait for test registration support.

Self Type
TestRegistration with Suite
Source
TestRegistration.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TestRegistration
  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: ⇒ 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: ⇒ Assertion): Unit

    Permalink

    Register a test.

    Register a test.

    testText

    the test text

    testTags

    the test tags

    testFun

    the test function