Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/usecases/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: usecases_testing
title: "Testing"
---

**ZIO Test** is a zero dependency testing library that makes it easy to test effectual programs. The fastest way to get started is to extend `DefaultRunnableSpec`, which creates a Spec that is also an executable program you can run from within SBT using `test:run` or by using `test` with the built-in SBT test runner.
**ZIO Test** is a zero dependency testing library that makes it easy to test effectual programs. Begin by adding the required dependency on `zio-test`, and for SBT integration `zio-test-sbt` along with adding `new TestFramework("zio.test.sbt.ZTestFramework")` to your SBT settings. From there the fastest way to start writing tests is to extend `DefaultRunnableSpec`, which creates a Spec that is also an executable program you can run from within SBT using `test:run` or by using `test` with the SBT test runner.

```scala
import zio._
Expand Down