class
ResultOfTaggedAsInvocation
extends AnyRef
Instance Constructors
-
new
ResultOfTaggedAsInvocation
(verb: String, rest: String, tags: List[Tag])
Concrete Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
val
rest
: String
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
val
tags
: List[Tag]
-
def
toString
(): String
-
val
verb
: String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from Any
Value Members
-
def
!=
(arg0: Any): Boolean
-
def
==
(arg0: Any): Boolean
-
def
asInstanceOf
[T0]
: T0
-
def
isInstanceOf
[T0]
: Boolean
Supports the registration of tagged tests in shorthand form in
FlatSpec
andorg.scalatest.fixture.FlatSpec
.For example, this class enables syntax such as the following tagged, pending test registration in shorthand form:
In addition, this class indirectly enables syntax such as the following tagged test registration in shorthand form:
Rather than provide
in
andignore
methods directly, these methods are provided aftertaggedAs()
by implicit conversions because the type passed toin
(andignore
) differs in aFlatSpec
and aorg.scalatest.fixture.FlatSpec
. Aorg.scalatest.fixture.FlatSpec
needs twoin
methods, one that takes a no-arg test function and another that takes a one-arg test function (a test that takes aFixture
as its parameter). By constrast, aFlatSpec
needs only onein
method that takes a by-name parameter. As a result,FlatSpec
andorg.scalatest.fixture.FlatSpec
each provide an implicit conversion fromResultOfTaggedAsInvocation
to a type that provides the appropriatein
methods.