case class IOMatcher[T](check: ValueCheck[T], duration: Option[FiniteDuration]) extends Matcher[IO[T]] with Product with Serializable
- Source
- IOMatchers.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- IOMatcher
- Serializable
- Serializable
- Product
- Equals
- Matcher
- AnyRef
- Any
Implicitly
- by Returns
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new IOMatcher(check: ValueCheck[T], duration: Option[FiniteDuration])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (IOMatcher[T], B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
^^[S](f: (S) ⇒ Expectable[IO[T]], dummy: Int): Matcher[S]
- Definition Classes
- Matcher
-
def
^^[S](f: (S) ⇒ IO[T]): Matcher[S]
- Definition Classes
- Matcher
-
def
and[S <: IO[T]](m: ⇒ Matcher[S]): Matcher[S]
- Definition Classes
- Matcher
-
def
apply[S <: IO[T]](e: Expectable[S]): MatchResult[S]
- Definition Classes
- IOMatcher → Matcher
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def before(d: FiniteDuration): IOMatcher[T]
- val check: ValueCheck[T]
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- val duration: Option[FiniteDuration]
- def ensuring(cond: (IOMatcher[T]) ⇒ Boolean, msg: ⇒ Any): IOMatcher[T]
- def ensuring(cond: (IOMatcher[T]) ⇒ Boolean): IOMatcher[T]
- def ensuring(cond: Boolean, msg: ⇒ Any): IOMatcher[T]
- def ensuring(cond: Boolean): IOMatcher[T]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
eventually(retries: Int, sleep: Duration): Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
eventually: Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
failure[S <: IO[T]](message: ⇒ String, value: Expectable[S]): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
iff(b: Boolean): Matcher[IO[T]]
- Definition Classes
- Matcher
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lazily: Matcher[() ⇒ IO[T]]
- Definition Classes
- Matcher
-
def
mute: Matcher[IO[T]]
- Definition Classes
- Matcher
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
not: Matcher[IO[T]]
- Definition Classes
- Matcher
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
or[S <: IO[T]](m: ⇒ Matcher[S]): Matcher[S]
- Definition Classes
- Matcher
-
def
orPending(message: (String) ⇒ String): Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
orPending(m: String): Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
orPending: Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
orSkip(message: (String) ⇒ String): Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
orSkip(m: String): Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
orSkip: Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
result[S <: IO[T]](other: specs2.matcher.MatchResultMessages.MatchResultMessage, value: Expectable[S]): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
result[S <: IO[T]](other: Result, value: Expectable[S]): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
result[S <: IO[T]](other: MatchResult[_], value: Expectable[S]): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
result[S <: IO[T]](test: ⇒ Boolean, okMessage: ⇒ String, koMessage: ⇒ String, value: Expectable[S], details: Details): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
result[S <: IO[T]](test: ⇒ Boolean, okMessage: ⇒ String, koMessage: ⇒ String, value: Expectable[S], expected: String, actual: String): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
result[S <: IO[T]](triplet: ⇒ (Boolean, String, String), value: Expectable[S]): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
result[S <: IO[T]](test: ⇒ Boolean, okMessage: ⇒ String, koMessage: ⇒ String, value: Expectable[S]): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
def
returns(m: String): MatchResult[Result]
- Implicit
- This member is added by an implicit conversion from IOMatcher[T] to specs2.matcher.Returns[IOMatcher[T]] performed by method Returns in org.specs2.matcher.ReturnsSyntax. This conversion will take place only if an implicit value of type AsResult[IOMatcher[T]] is in scope.
- Definition Classes
- Returns
-
def
returnsMatch(m: String): MatchResult[Result]
- Implicit
- This member is added by an implicit conversion from IOMatcher[T] to specs2.matcher.Returns[IOMatcher[T]] performed by method Returns in org.specs2.matcher.ReturnsSyntax. This conversion will take place only if an implicit value of type AsResult[IOMatcher[T]] is in scope.
- Definition Classes
- Returns
-
def
returnsResult(m: String): MatchResult[Result]
- Implicit
- This member is added by an implicit conversion from IOMatcher[T] to specs2.matcher.Returns[IOMatcher[T]] performed by method Returns in org.specs2.matcher.ReturnsSyntax. This conversion will take place only if an implicit value of type AsResult[IOMatcher[T]] is in scope.
- Definition Classes
- Returns
-
def
setMessage(message: String): Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
success[S <: IO[T]](message: ⇒ String, value: Expectable[S]): MatchResult[S]
- Attributes
- protected
- Definition Classes
- Matcher
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
test: (IO[T]) ⇒ Boolean
- Definition Classes
- Matcher
-
def
unless(b: Boolean, m: String): Matcher[IO[T]]
- Definition Classes
- Matcher
-
def
updateMessage(f: (String) ⇒ String): Matcher[IO[T]]
- Definition Classes
- Matcher
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
when(b: Boolean, m: String): Matcher[IO[T]]
- Definition Classes
- Matcher
- def withValue(t: T): IOMatcher[T]
- def withValue(check: ValueCheck[T]): IOMatcher[T]
- def →[B](y: B): (IOMatcher[T], B)