ScalaTest 1.0
|
|
protected final
class
IgnoreVerbString(verb : java.lang.String, name : java.lang.String)
extends
AnyRefIgnoreWord
instance referenced
from FixtureFlatSpec
'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 { ... } ^
In addition, it enables syntax such as the following registration of an ignored, pending test:
ignore should "pop values in last-in-first-out order" 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.
And finally, it also enables syntax such as the following ignored, tagged test registration:
ignore should "pop values in last-in-first-out order" taggedAs(SlowTest) in { ... } ^
For more information and examples of the use of the ignore
field, see the Ignored tests section
in the main documentation for trait FlatSpec
.
Method Summary | |
def
|
in
(testFun : () => Any) : Unit
Supports the registration of ignored, no-arg tests in a
FixtureFlatSpec . |
def
|
in
(testFun : (FixtureParam) => Any) : Unit
Supports the registration of ignored, one-arg tests (tests that take a
Fixture object
as a parameter) in a FixtureFlatSpec . |
def
|
is
(testFun : => PendingNothing) : Unit
Supports the registration of ignored, pending tests in a
FixtureFlatSpec . |
def
|
taggedAs
(firstTestTag : Tag, otherTestTags : Tag*) : IgnoreVerbStringTaggedAs
Supports the registration of ignored, tagged tests in a
FixtureFlatSpec . |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
FixtureFlatSpec
.
This method supports syntax such as the following:
ignore must "pop values in last-in-first-out order" in { () => ... } ^
For examples of the registration of ignored tests, see the Ignored tests section
in the main documentation for trait FlatSpec
.
def
in(testFun : (FixtureParam) => Any) : Unit
Fixture
object
as a parameter) in a FixtureFlatSpec
.
This method supports syntax such as the following:
ignore must "pop values in last-in-first-out order" in { fixture => ... } ^
For examples of the registration of ignored tests, see the Ignored tests section
in the main documentation for trait FlatSpec
.
def
is(testFun : => PendingNothing) : Unit
FixtureFlatSpec
.
This method supports syntax such as the following:
ignore must "pop values in last-in-first-out order" 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 FlatSpec
. For examples of the registration of ignored tests,
see the Ignored tests section
in the main documentation for trait FlatSpec
.
def
taggedAs(firstTestTag : Tag, otherTestTags : Tag*) : IgnoreVerbStringTaggedAs
FixtureFlatSpec
.
This method supports syntax such as the following:
ignore must "pop values in last-in-first-out order" taggedAs(SlowTest) in { ... } ^
For examples of tagged test registration, see the Tagging tests section in the main documentation
for trait FlatSpec
. For examples of the registration of ignored tests,
see the Ignored tests section
in the main documentation for trait FlatSpec
.
ScalaTest 1.0
|
|