RequestResponsePactForger
Attributes
- Graph
- Supertypes
- trait RequestResponsePactOpstrait PactOpstrait Pact4sLoggerclass CatsEffectSuitetrait CatsEffectFunFixturestrait CatsEffectFixturestrait CatsEffectAssertionsclass FunSuitetrait ValueTransformstrait SuiteTransformstrait TestTransformstrait TestOptionsConversionstrait FunFixturestrait Assertionstrait CompileErrorMacroclass Suitetrait PlatformSuiteclass Objecttrait Matchableclass Any
Members list
Type members
Inherited classlikes
Attributes
- name
The name of this fixture, used for displaying an error message if
beforeAll()
orafterAll()
fail.- Inherited from:
- Suite
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- FunFixtures
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- FunFixtures
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- CatsEffectAssertions
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- CatsEffectAssertions
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- CatsEffectAssertions
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- CatsEffectAssertions
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- CatsEffectAssertions
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- CatsEffectFunFixtures
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- CatsEffectFixturesPlatform
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- SuiteTransforms
- Graph
- Supertypes
Attributes
- Inherited from:
- CatsEffectFunFixtures
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- TestTransforms
- Graph
- Supertypes
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
.
Attributes
- Inherited from:
- CatsEffectFixtures
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- ValueTransforms
- Graph
- Supertypes
Value members
Concrete methods
This effect runs after the consumer pact tests are run, but before they get written to a file.
This effect runs after the consumer pact tests are run, but before they get written to a file.
Attributes
Functinonal fixtures that can be reused for individual test cases or entire suites.
Functinonal fixtures that can be reused for individual test cases or entire suites.
Attributes
- Definition Classes
Attributes
- Definition Classes
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.
Attributes
- Inherited from:
- Suite
Runs after each individual test case.
Attributes
- Inherited from:
- Assertions
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]
Attributes
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.
Attributes
- Inherited from:
- Assertions
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.
Attributes
- Inherited from:
- Assertions
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.
Attributes
- clue
a value that will be printed in case the assertions fails
- obtained
the IO under testing
- returns
the expected value
- Inherited from:
- CatsEffectAssertions
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- Assertions
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.
Attributes
- clue
a value that will be printed in case the assertions fails
- obtained
the SyncIO under testing
- returns
the expected value
- Inherited from:
- CatsEffectAssertions
Attributes
- Inherited from:
- Assertions
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.
Attributes
- Inherited from:
- Suite
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.
Attributes
- Inherited from:
- Suite
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- RequestResponsePactForgerResources
Attributes
- Inherited from:
- Assertions
Intercepts a Throwable
being thrown inside the provided IO
.
Intercepts a Throwable
being thrown inside the provided IO
.
Attributes
- Example:
val io = IO.raiseError[Unit](MyException("BOOM!")) interceptIO[MyException](io)
or
interceptIO[MyException] { IO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
Attributes
- Inherited from:
- Assertions
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
.
Attributes
- Example:
val io = IO.raiseError[Unit](MyException("BOOM!")) interceptIO[MyException]("BOOM!")(io)
or
interceptIO[MyException] { IO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
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
.
Attributes
- Example:
val io = SyncIO.raiseError[Unit](MyException("BOOM!")) interceptSyncIO[MyException]("BOOM!")(io)
or
interceptSyncIO[MyException] { SyncIO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
Intercepts a Throwable
being thrown inside the provided SyncIO
.
Intercepts a Throwable
being thrown inside the provided SyncIO
.
Attributes
- Example:
val io = SyncIO.raiseError[Unit](MyException("BOOM!")) interceptSyncIO[MyException](io)
or
interceptSyncIO[MyException] { SyncIO.raiseError[Unit](MyException("BOOM!")) }
- Inherited from:
- CatsEffectAssertions
Attributes
- Inherited from:
- SuiteTransforms
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- TestTransforms
Attributes
Attributes
- Inherited from:
- SuiteTransforms
Attributes
Attributes
- Inherited from:
- Assertions
Attributes
Attributes
- Inherited from:
- SuiteTransforms
Attributes
- Inherited from:
- TestTransforms
Attributes
- Inherited from:
- TestTransforms
The base class for all test suites
Attributes
- Inherited from:
- FunSuite
Attributes
- Inherited from:
- ValueTransforms
Attributes
- Definition Classes
- Inherited from:
- CatsEffectSuite
Attributes
- Inherited from:
- BasePactForgerResources
Inherited fields
Attributes
- Inherited from:
- RequestResponsePactForgerResources
Attributes
- Inherited from:
- Assertions
Attributes
- Inherited from:
- FunSuite
Attributes
- Inherited from:
- BasePactForgerResources
Implicits
Inherited implicits
Attributes
- Inherited from:
- CatsEffectSuite
Attributes
- Inherited from:
- CatsEffectSuite
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
Attributes
- Inherited from:
- TestOptionsConversions
Attributes
- Inherited from:
- PactOps
Attributes
- Inherited from:
- RequestResponsePactOps
Attributes
- Inherited from:
- RequestResponsePactOps
Attributes
- Inherited from:
- RequestResponsePactOps
Attributes
- Inherited from:
- RequestResponsePactOps
Attributes
- Inherited from:
- RequestResponsePactOps