final case class ExecutedSpec[+E](caseValue: SpecCase[E, ExecutedSpec[E]]) extends Product with Serializable
An ExecutedSpec is a spec that has been run to produce test results.
- Self Type
- ExecutedSpec[E]
- Alphabetic
- By Inheritance
- ExecutedSpec
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ExecutedSpec(caseValue: SpecCase[E, ExecutedSpec[E]])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val caseValue: SpecCase[E, ExecutedSpec[E]]
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
exists(f: (SpecCase[E, Boolean]) ⇒ Boolean): Boolean
Determines if any node in the spec is satisfied by the given predicate.
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fold[Z](f: (SpecCase[E, Z]) ⇒ Z): Z
Folds over all nodes to produce a final result.
-
def
forall(f: (SpecCase[E, Boolean]) ⇒ Boolean): Boolean
Determines if all nodes in the spec are satisfied by the given predicate.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
size: Int
Computes the size of the spec, i.e.
Computes the size of the spec, i.e. the number of tests in the spec.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
transform[E1](f: (SpecCase[E, ExecutedSpec[E1]]) ⇒ SpecCase[E1, ExecutedSpec[E1]]): ExecutedSpec[E1]
Transforms the spec one layer at a time.
-
def
transformAccum[E1, Z](z0: Z)(f: (Z, SpecCase[E, ExecutedSpec[E1]]) ⇒ (Z, SpecCase[E1, ExecutedSpec[E1]])): (Z, ExecutedSpec[E1])
Transforms the spec statefully, one layer at a time.
-
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
- @throws( ... ) @native()