abstract class TestRunner[L, -T] extends AnyRef
A TestRunner[R, E, L] encapsulates all the logic necessary to run specs that
require an environment R and may fail with an error E, using labels of
type L. Test runners require a test executor, a platform, and a reporter.
- Self Type
- TestRunner[L, T]
- Alphabetic
- By Inheritance
- TestRunner
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new TestRunner(executor: TestExecutor[L, T], platform: Platform = PlatformLive.makeDefault().withReportFailure(_ => ()), reporter: TestReporter[L] = DefaultTestReporter(Console.Live))
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
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.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
- 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()
- final def run(spec: Spec[L, T]): UIO[ExecutedSpec[L]]
Runs the spec, producing the execution results.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def unsafeRun(spec: Spec[L, T]): ExecutedSpec[L]
An unsafe, synchronous run of the specified spec.
- final def unsafeRunAsync(spec: Spec[L, T])(k: (ExecutedSpec[L]) => Unit): Unit
An unsafe, asynchronous run of the specified spec.
- final def unsafeRunSync(spec: Spec[L, T]): Exit[Nothing, ExecutedSpec[L]]
An unsafe, synchronous run of the specified spec.
- 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()