Trait

org.scalatest

SafeTestRegistration

Related Doc: package scalatest

Permalink

trait SafeTestRegistration extends AnyRef

Trait for test registration support.

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