Wilfried Pasquazzo

Results 5 comments of Wilfried Pasquazzo

Will this issue also affect the new Spring Releases, e.g. Spring Boot 3.0.x and the then used Spring Framework 6.0.x ?

Running into the same issue, when using the MockKExtension for unit-testing with latest mockK version, and the following settings enabled on a rather large project with over 1000 tests: ```...

That would help me in my case already a lot.

We ended up writing a custom test extension class and using that instead of the official MockKExtension implementation: ```kotlin import io.mockk.MockKAnnotations import io.mockk.unmockkAll import org.junit.jupiter.api.extension.AfterAllCallback import org.junit.jupiter.api.extension.ExtensionContext import org.junit.jupiter.api.extension.TestInstancePostProcessor class...

vilikin is correct, the current implementation of that flag is broken and doesn't actually enable us to skip the call to `clearAllMocks` the way it was intended. I attached a...