Http4sSuite
Common stack for http4s' munit based tests
- Source:
- Http4sSuite.scala
Type members
Classlikes
Inherited classlikes
- Value parameters:
- name
The name of this fixture, used for displaying an error message if
beforeAll()
orafterAll()
fail.
- Inherited from:
- Suite
- Source:
- Suite.scala
- Inherited from:
- CatsEffectFixturesPlatform
- Source:
- CatsEffectFixturesPlatform.scala
Similar to ResourceSuiteLocalFixture
, but supported on both JVM and JS via several caveats.
Instead of directly providing T
provides a (memoized) IO[T]
that is backed by a
Deferred[T]
. It is unsafe because on JS the resource is closed concurrently without
backpressure,
i.e. the suite will complete even while the resource has not closed yet. On JVM it is
semantically equivalent to ResourceSuiteLocalFixture
. Note also that constructing this
fixture is impure because it unsafely allocates a Deferred
.
Similar to ResourceSuiteLocalFixture
, but supported on both JVM and JS via several caveats.
Instead of directly providing T
provides a (memoized) IO[T]
that is backed by a
Deferred[T]
. It is unsafe because on JS the resource is closed concurrently without
backpressure,
i.e. the suite will complete even while the resource has not closed yet. On JVM it is
semantically equivalent to ResourceSuiteLocalFixture
. Note also that constructing this
fixture is impure because it unsafely allocates a Deferred
.
- Inherited from:
- CatsEffectFixtures
- Source:
- CatsEffectFixtures.scala
- Inherited from:
- ValueTransforms
- Source:
- ValueTransforms.scala
Inherited types
Value members
Concrete methods
Inherited methods
Runs once after all test cases and after all suite-local fixtures have been tear down.
Runs once after all test cases and after all suite-local fixtures have been tear down.
- Inherited from:
- Suite
- Source:
- Suite.scala
Runs after each individual test case.
Runs after each individual test case.
- Inherited from:
- Suite
- Source:
- Suite.scala
Asserts that two elements are equal using ==
equality.
Asserts that two elements are equal using ==
equality.
The "expected" value (second argument) must have the same type or be a subtype of the "obtained" value (first argument). For example:
assertEquals(Option(1), Some(1)) // OK
assertEquals(Some(1), Option(1)) // Error: Option[Int] is not a subtype of Some[Int]
Use assertEquals[Any, Any](a, b)
as an escape hatch to compare two
values of different types. For example:
val a: Either[List[String], Int] = Right(42)
val b: Either[String, Int] = Right(42)
assertEquals[Any, Any](a, b) // OK
assertEquals(a, b) // Error: Either[String, Int] is not a subtype of Either[List[String], Int]
- Inherited from:
- Assertions
- Source:
- Assertions.scala
Asserts that two doubles are equal to within a positive delta. If the expected value is infinity then the delta value is ignored. NaNs are considered equal: assertEquals(Double.NaN, Double.NaN, *) passes.
Asserts that two doubles are equal to within a positive delta. If the expected value is infinity then the delta value is ignored. NaNs are considered equal: assertEquals(Double.NaN, Double.NaN, *) passes.
- Inherited from:
- Assertions
- Source:
- Assertions.scala
Asserts that two floats are equal to within a positive delta. If the expected value is infinity then the delta value is ignored. NaNs are considered equal: assertEquals(Float.NaN, Float.NaN, *) passes.
Asserts that two floats are equal to within a positive delta. If the expected value is infinity then the delta value is ignored. NaNs are considered equal: assertEquals(Float.NaN, Float.NaN, *) passes.
- Inherited from:
- Assertions
- Source:
- Assertions.scala
Asserts that an IO
returns an expected value.
Asserts that an IO
returns an expected value.
The "returns" value (second argument) must have the same type or be a subtype of the one
"contained" inside the IO
(first argument). For example:
assertIO(IO(Option(1)), returns = Some(1)) // OK
assertIO(IO(Some(1)), returns = Option(1)) // Error: Option[Int] is not a subtype of Some[Int]
The "clue" value can be used to give extra information about the failure in case the assertion fails.
- Value parameters:
- clue
a value that will be printed in case the assertions fails
- obtained
the IO under testing
- returns
the expected value
- Inherited from:
- CatsEffectAssertions
- Source:
- CatsEffectAssertions.scala
- Inherited from:
- Assertions
- Source:
- Assertions.scala
Asserts that a SyncIO
returns an expected value.
Asserts that a SyncIO
returns an expected value.
The "returns" value (second argument) must have the same type or be a subtype of the one
"contained" inside the SyncIO
(first argument). For example:
assertSyncIO(SyncIO(Option(1)), returns = Some(1)) // OK
assertSyncIO(SyncIO(Some(1)), returns = Option(1)) // Error: Option[Int] is not a subtype of Some[Int]
The "clue" value can be used to give extra information about the failure in case the assertion fails.
- Value parameters:
- clue
a value that will be printed in case the assertions fails
- obtained
the SyncIO under testing
- returns
the expected value
- Inherited from:
- CatsEffectAssertions
- Source:
- CatsEffectAssertions.scala
Runs once before all test cases and before all suite-local fixtures are setup. An error in this method aborts the test suite.
Runs once before all test cases and before all suite-local fixtures are setup. An error in this method aborts the test suite.
- Inherited from:
- Suite
- Source:
- Suite.scala
Runs before each individual test case. An error in this method aborts the test case.
Runs before each individual test case. An error in this method aborts the test case.
- Inherited from:
- Suite
- Source:
- Suite.scala
- Inherited from:
- Assertions
- Source:
- Assertions.scala
Intercepts a Throwable
being thrown inside the provided IO
.
Intercepts a Throwable
being thrown inside the provided IO
.
- Example:
val io = IO.raiseError[Unit](MyException("BOOM!")) interceptIO[MyException](io)
or
interceptIO[MyException] { IO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
- Source:
- CatsEffectAssertions.scala
- Inherited from:
- Assertions
- Source:
- Assertions.scala
Intercepts a Throwable
with a certain message being thrown inside the provided IO
.
Intercepts a Throwable
with a certain message being thrown inside the provided IO
.
- Example:
val io = IO.raiseError[Unit](MyException("BOOM!")) interceptIO[MyException]("BOOM!")(io)
or
interceptIO[MyException] { IO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
- Source:
- CatsEffectAssertions.scala
Intercepts a Throwable
with a certain message being thrown inside the provided SyncIO
.
Intercepts a Throwable
with a certain message being thrown inside the provided SyncIO
.
- Example:
val io = SyncIO.raiseError[Unit](MyException("BOOM!")) interceptSyncIO[MyException]("BOOM!")(io)
or
interceptSyncIO[MyException] { SyncIO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
- Source:
- CatsEffectAssertions.scala
Intercepts a Throwable
being thrown inside the provided SyncIO
.
Intercepts a Throwable
being thrown inside the provided SyncIO
.
- Example:
val io = SyncIO.raiseError[Unit](MyException("BOOM!")) interceptSyncIO[MyException](io)
or
interceptSyncIO[MyException] { SyncIO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
- Source:
- CatsEffectAssertions.scala
- Definition Classes
- ScalaCheckSuite -> TestTransforms
- Inherited from:
- ScalaCheckSuite
- Source:
- ScalaCheckSuite.scala
- Definition Classes
- Inherited from:
- (x$1:@unchecked)match{ casep:Test.Result=> ScalaCheckEffectSuite.this.munit$ScalaCheckEffectSuite$$super$munitValueTransform(ScalaCheckEffectSuite.this.parseTestResult(p)(generate)) })) ScalaCheckEffectSuite.this.munit$ScalaCheckEffectSuite$$super$munitValueTransforms.:+[ValueTransform](ScalaCheckEffectSuite.this.scalaCheckPropFValueTransform).:+[ValueTransform](testResultTransform) }">ScalaCheckEffectSuite
- Source:
- ScalaCheckEffectSuite.scala
Inherited fields
Implicits
Implicits
Inherited implicits
Implicitly create a TestOptions given a test name.
This allows writing test("name") { ... }
even if test
accepts a TestOptions
Implicitly create a TestOptions given a test name.
This allows writing test("name") { ... }
even if test
accepts a TestOptions
- Inherited from:
- TestOptionsConversions
- Source:
- TestOptions.scala