NonSuspendingGeneratingFixtureScope
Scope for managing mutable test fixtures that are regenerated for each test. Provides a structured way to define tests that require fresh fixture instances generated before each test.
Parameters
T
The type of fixture object being managed
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun <T> TestSuiteScope.withFixtureGenerator(generator: suspend () -> T): GeneratingSuspendFixtureScopHolder<T>
Prepares a fixture-generating scope from a generator function.