IgnoreVerbStringTaggedAs

final protected class IgnoreVerbStringTaggedAs(verb: String, name: String, tags: List[Tag])

Class that supports registration of ignored, tagged tests via the IgnoreWord instance referenced from FixtureAsyncFlatSpec's ignore field.

This class enables syntax such as the following registration of an ignored, tagged test:

ignore should "pop values in last-in-first-out order" taggedAs(SlowTest) in { ... }
                                                                        ^

In addition, it enables syntax such as the following registration of an ignored, tagged, pending test:

ignore should "pop values in last-in-first-out order" taggedAs(SlowTest) is (pending)
                                                                        ^

Note: the is method is provided for completeness and design symmetry, given there's no way to prevent changing is to ignore and marking a pending test as ignored that way. Although it isn't clear why someone would want to mark a pending test as ignored, it can be done.

For more information and examples of the use of the ignore field, see the Ignored tests section in the main documentation for trait AnyFlatSpec. For examples of tagged test registration, see the Tagging tests section in the main documentation for trait AnyFlatSpec.

Value parameters:
name

the name

tags

the list of tags

verb

the verb

class Object
trait Matchable
class Any

Value members

Concrete methods

infix inline def in(testFun: () => Future[Assertion]): Unit

Supports the registration of ignored, tagged, no-arg tests in a FixtureAsyncFlatSpec.

Supports the registration of ignored, tagged, no-arg tests in a FixtureAsyncFlatSpec.

This method supports syntax such as the following:

ignore must "pop values in last-in-first-out order" taggedAs(SlowTest) in { () => ... }
                                                                      ^

For examples of the registration of ignored tests, see the Ignored tests section in the main documentation for trait AnyFlatSpec. For examples of tagged test registration, see the Tagging tests section in the main documentation for trait AnyFlatSpec.

Value parameters:
testFun

the test function

infix inline def in(testFun: FixtureParam => Future[Assertion]): Unit

Supports the registration of ignored, tagged, one-arg tests (tests that take a FixtureParam object as a parameter) in a FixtureAsyncFlatSpec.

Supports the registration of ignored, tagged, one-arg tests (tests that take a FixtureParam object as a parameter) in a FixtureAsyncFlatSpec.

This method supports syntax such as the following:

ignore must "pop values in last-in-first-out order" taggedAs(SlowTest) in { fixture => ... }
                                                                      ^

For examples of the registration of ignored tests, see the Ignored tests section in the main documentation for trait AnyFlatSpec. For examples of tagged test registration, see the Tagging tests section in the main documentation for trait AnyFlatSpec.

Value parameters:
testFun

the test function

infix inline def is(testFun: => PendingStatement): Unit

Supports the registration of ignored, tagged, pending tests in a FixtureAsyncFlatSpec.

Supports the registration of ignored, tagged, pending tests in a FixtureAsyncFlatSpec.

This method supports syntax such as the following:

ignore must "pop values in last-in-first-out order" taggedAs(SlowTest) is (pending)
                                                                      ^

Note: this is method is provided for completeness and design symmetry, given there's no way to prevent changing is to ignore and marking a pending test as ignored that way. Although it isn't clear why someone would want to mark a pending test as ignored, it can be done.

For examples of pending test registration, see the Pending tests section in the main documentation for trait AnyFlatSpec. For examples of the registration of ignored tests, see the Ignored tests section in the main documentation for trait AnyFlatSpec. For examples of tagged test registration, see the Tagging tests section in the main documentation for trait AnyFlatSpec.

Value parameters:
testFun

the test function