-
Users would like to know how things about their property-based tests, such as how many values were generated, and what is their distribution. Using test annotations, we can now do this quite cleanly.
…
-
dependencies
``` sbt
libraryDependencies += "dev.zio" %%% "zio" % "2.0.8"
libraryDependencies += "dev.zio" %%% "zio-streams" % "2.0.8"
libraryDependencies += "dev.zio" %%% "zio-test" % "2.0.8"
li…
-
- [x] define laws using regular functions (PR #293)
- [x] add support for law testing for Divariant (PR https://github.com/zio/zio/pull/4220)
- [ ] add laws testing for Function1 instances (require …
-
Currently ZIO Test results are predominantly reported in the console, with JUnit XML reports generated through SBT integration. Over time I think we are also going to want to support generating test r…
-
Tapir version: 1.9.10
Scala version: 3.3.1
## Connection hangs with no useful logs when response zio stream fails
When using zio streams to serve http response using `ZioHttpInterpreter`, the…
-
It seems with Scala 2.13.8 (with `-Xsource:3` and ZIO config 3.0.0-RC1) the `generateReport` does not contain any part of the config values passed as `value` parameter.
Example code:
imp…
-
I have a lambda that I've compiled with GraalVM into a native binary. When I try to test it I get the following:
```
timestamp=2022-09-16T20:32:51.642769Z level=ERROR thread=#zio-fiber-0 message="…
-
Hello!
first of all, thanks for all your awesome work on zio ecosystem!
I have a problem with following code:
```scala
import zio.Scope
import zio.test.{Spec, TestEnvironment, ZIOSpecDefault,…
-
I've been getting *occasional* failures in CI with the following error:
```
Fiber failed.
An unchecked error was produced.
java.lang.NullPointerException
at zio.Cause.causeToSequential$1(Cause…
-
The following code produces `java.lang.StackOverflowError` when you run the test.
```scala
object Test extends DefaultRunnableSpec {
def spec = suite("Test")(
test("1") {
val assert…