final class ItWord extends AnyRef
Class that supports shorthand scope registration via the instance referenced from FixtureAsyncWordSpecLike
's it
field.
This class enables syntax such as the following test registration:
"A Stack" when { ... }
it should { ... } ^
For more information and examples of the use of the it
field, see the main documentation
for FixtureAsyncWordSpec
.
- Attributes
- protected
- Source
- FixtureAsyncWordSpecLike.scala
- Alphabetic
- By Inheritance
- ItWord
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ItWord()
Value Members
- def can(right: => Unit)(implicit pos: Position): Unit
Supports the registration of scope with
can
in aFixtureAsyncWordSpecLike
.Supports the registration of scope with
can
in aFixtureAsyncWordSpecLike
.This method supports syntax such as the following:
"A Stack" when { ... }
it can { ... } ^For examples of scope registration, see the main documentation for
AnyWordSpec
.- right
the body function
- def must(right: => Unit)(implicit pos: Position): Unit
Supports the registration of scope with
must
in aFixtureAsyncWordSpecLike
.Supports the registration of scope with
must
in aFixtureAsyncWordSpecLike
.This method supports syntax such as the following:
"A Stack" when { ... }
it must { ... } ^For examples of scope registration, see the main documentation for
AnyWordSpec
.- right
the body function
- def should(right: => Unit)(implicit pos: Position): Unit
Supports the registration of scope with
should
in aFixtureAsyncWordSpecLike
.Supports the registration of scope with
should
in aFixtureAsyncWordSpecLike
.This method supports syntax such as the following:
"A Stack" when { ... }
it should { ... } ^For examples of scope registration, see the main documentation for
FixtureAsyncWordSpec
.- right
the body function
- def when(right: => Unit)(implicit pos: Position): Unit
Supports the registration of scope with
when
in aFixtureAsyncWordSpecLike
.Supports the registration of scope with
when
in aFixtureAsyncWordSpecLike
.This method supports syntax such as the following:
"A Stack" should { ... }
it when { ... } ^For examples of scope registration, see the main documentation for
AnyWordSpec
.- right
the body function