A Spec[R, E, T] is the backbone of ZIO Test. Every spec is either a
suite, which contains other specs, or a test of type T. All specs require
an environment of type R and may potentially fail with an error of type
E.
- Companion:
- object
Value members
Concrete methods
Syntax for adding aspects.
Syntax for adding aspects.
test("foo") { assert(42, equalTo(42)) } @@ ignore
Annotates each test in this spec with the specified test annotation.
Annotates each test in this spec with the specified test annotation.
Returns a new spec with the annotation map at each node.
Returns a new spec with the annotation map at each node.
Returns the number of tests in the spec that satisfy the specified predicate.
Returns the number of tests in the spec that satisfy the specified predicate.
Returns an effect that models execution of this spec.
Returns an effect that models execution of this spec.
Determines if any node in the spec is satisfied by the given predicate.
Determines if any node in the spec is satisfied by the given predicate.
Returns a new spec with only those tests with annotations satisfying the
specified predicate. If no annotations satisfy the specified predicate then
returns Some with an empty suite if this is a suite or None otherwise.
Returns a new spec with only those tests with annotations satisfying the
specified predicate. If no annotations satisfy the specified predicate then
returns Some with an empty suite if this is a suite or None otherwise.
Returns a new spec with only those suites and tests satisfying the
specified predicate. If a suite label satisfies the predicate the entire
suite will be included in the new spec. Otherwise only those specs in a
suite that satisfy the specified predicate will be included in the new
spec. If no labels satisfy the specified predicate then returns Some with
an empty suite if this is a suite or None otherwise.
Returns a new spec with only those suites and tests satisfying the
specified predicate. If a suite label satisfies the predicate the entire
suite will be included in the new spec. Otherwise only those specs in a
suite that satisfy the specified predicate will be included in the new
spec. If no labels satisfy the specified predicate then returns Some with
an empty suite if this is a suite or None otherwise.
Returns a new spec with only those suites and tests with tags satisfying
the specified predicate. If no tags satisfy the specified predicate then
returns Some with an empty suite with the root label if this is a suite
or None otherwise.
Returns a new spec with only those suites and tests with tags satisfying
the specified predicate. If no tags satisfy the specified predicate then
returns Some with an empty suite with the root label if this is a suite
or None otherwise.
Effectfully folds over all nodes according to the execution strategy of suites, utilizing the specified default for other cases.
Effectfully folds over all nodes according to the execution strategy of suites, utilizing the specified default for other cases.
Determines if all node in the spec are satisfied by the given predicate.
Determines if all node in the spec are satisfied by the given predicate.
Iterates over the spec with the sequential strategy as the default, and effectfully transforming every test with the provided function, finally reconstructing the spec with the same structure.
Iterates over the spec with the sequential strategy as the default, and effectfully transforming every test with the provided function, finally reconstructing the spec with the same structure.
Iterates over the spec with the specified default execution strategy, and effectfully transforming every test with the provided function, finally reconstructing the spec with the same structure.
Iterates over the spec with the specified default execution strategy, and effectfully transforming every test with the provided function, finally reconstructing the spec with the same structure.
Iterates over the spec with the parallel strategy as the default, and effectfully transforming every test with the provided function, finally reconstructing the spec with the same structure.
Iterates over the spec with the parallel strategy as the default, and effectfully transforming every test with the provided function, finally reconstructing the spec with the same structure.
Iterates over the spec with the parallel (n) strategy as the default, and
effectfully transforming every test with the provided function, finally
reconstructing the spec with the same structure.
Iterates over the spec with the parallel (n) strategy as the default, and
effectfully transforming every test with the provided function, finally
reconstructing the spec with the same structure.
Returns a new spec with remapped errors and tests.
Returns a new spec with remapped errors and tests.
Provides each test in this spec with its required environment
Provides each test in this spec with its required environment
Provides each test with the part of the environment that is not part of the
TestEnvironment, leaving a spec that only depends on the
TestEnvironment.
Provides each test with the part of the environment that is not part of the
TestEnvironment, leaving a spec that only depends on the
TestEnvironment.
val loggingLayer: ZLayer[Any, Nothing, Logging] = ???
val spec: ZSpec[TestEnvironment with Logging, Nothing] = ???
val spec2 = spec.provideCustomLayer(loggingLayer)
Provides a layer to the spec, translating it up a level.
Provides a layer to the spec, translating it up a level.
Uses the specified function to provide each test in this spec with part of its required environment.
Uses the specified function to provide each test in this spec with part of its required environment.
Splits the environment into two parts, providing each test with one part
using the specified layer and leaving the remainder R0.
Splits the environment into two parts, providing each test with one part
using the specified layer and leaving the remainder R0.
val clockLayer: ZLayer[Any, Nothing, Clock] = ???
val spec: ZSpec[Clock with Random, Nothing] = ???
val spec2 = spec.provideSomeLayer[Random](clockLayer)
Computes the size of the spec, i.e. the number of tests in the spec.
Computes the size of the spec, i.e. the number of tests in the spec.
Transforms the spec statefully, one layer at a time.
Transforms the spec statefully, one layer at a time.
Updates a service in the environment of this effect.
Updates a service in the environment of this effect.
Runs the spec only if the specified predicate is satisfied.
Runs the spec only if the specified predicate is satisfied.
Runs the spec only if the specified effectual predicate is satisfied.
Runs the spec only if the specified effectual predicate is satisfied.