final class IgnoreWord extends AnyRef
Class that supports registration of ignored tests via the instance referenced from FixtureAnyFlatSpec
's ignore
field.
This class enables syntax such as the following registration of an ignored test:
ignore should "pop values in last-in-first-out order" in { ... }
^
For more information and examples of the use of the ignore
field, see Ignored tests section
in the main documentation for this trait.
- Attributes
- protected
- Source
- FixtureAnyFlatSpecLike.scala
- Alphabetic
- By Inheritance
- IgnoreWord
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new IgnoreWord()
Value Members
- def can(string: String): IgnoreVerbString
Supports the registration of ignored tests with
can
in aFixtureAnyFlatSpec
.Supports the registration of ignored tests with
can
in aFixtureAnyFlatSpec
.This method supports syntax such as the following:
ignore can "pop values in last-in-first-out order" in { ... } ^
For more information and examples of the use of the
ignore
field, see Ignored tests section in the main documentation for traitAnyFlatSpec
.- string
the string description
- def must(string: String): IgnoreVerbString
Supports the registration of ignored tests with
must
in aFixtureAnyFlatSpec
.Supports the registration of ignored tests with
must
in aFixtureAnyFlatSpec
.This method supports syntax such as the following:
ignore must "pop values in last-in-first-out order" in { ... } ^
For more information and examples of the use of the
ignore
field, see Ignored tests section in the main documentation for traitAnyFlatSpec
.- string
the string description
- def should(string: String): IgnoreVerbString
Supports the registration of ignored tests with
should
in aFixtureAnyFlatSpec
.Supports the registration of ignored tests with
should
in aFixtureAnyFlatSpec
.This method supports syntax such as the following:
ignore should "pop values in last-in-first-out order" in { ... } ^
For more information and examples of the use of the
ignore
field, see Ignored tests section in the main documentation for traitAnyFlatSpec
.- string
the string description