FunFixture

object FunFixture
Companion:
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply[T](setup: TestOptions => T, teardown: T => Unit): FunFixture[T]
def async[T](setup: TestOptions => Future[T], teardown: T => Future[Unit]): FunFixture[T]
def map2[A, B](a: FunFixture[A], b: FunFixture[B]): FunFixture[(A, B)]
def map3[A, B, C](a: FunFixture[A], b: FunFixture[B], c: FunFixture[C]): FunFixture[(A, B, C)]