final class Test extends Serializable
Metadata about a single test case.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Test
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Test(name: String, body: () => Future[Any])(implicit loc: Location)
- new Test(name: String, body: () => Future[Any], tags: Set[Tag], location: Location)
- body
the function to be evaluated for this test case.
- tags
the annotated tags for this test case.
- location
the file and line number where this test was defined.
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
- def annotations: Array[Annotation]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val body: () => Future[Any]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(obj: Any): Boolean
- Definition Classes
- Test → AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- Test → AnyRef → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val location: Location
- val name: String
- 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()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def tag(newTag: Tag): Test
- val tags: Set[Tag]
- def toString(): String
- Definition Classes
- Test → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withBody(newBody: () => Future[Any]): Test
- def withBodyMap(newBody: (Future[Any]) => Future[Any]): Test
- def withLocation(newLocation: Location): Test
- def withName(newName: String): Test
- def withTags(newTags: Set[Tag]): Test