-
I love this library and I use it all the time. I find my test code has the same boiler plate (mostly taken from the README) in every test. Are there any concerns with adding another module that would …
-
Support jUnit5 extension. It is super easy to do, the question is how to distribute it. A new module with new artifact? Or include them together? I also don't know what is the best practice.
Here …
-
Hello!
getting error while using mockK:
java.lang.ExceptionInInitializerError
at io.mockk.MockKKt.clearAllMocks(MockK.kt:1630)
at ru.tinkoff.kora.test.extension.junit5.MockUtils.resetIfMock(Mo…
-
##### Environment
- Operating System: Windows
- JDK version: 17.0.8
- Visual Studio Code version: 1.95.0
- Java extension version: 1.36.0
##### Steps To Reproduce
1. Open https://github.com/ju…
-
It would be great if annotations such as `@ExcludeBean` would add `@Target(ElementType.ANNOTATION_TYPE)` to allow their usage as meta annotations.
This is a feature that JUnit-Jupiter offers for pret…
-
## Problem
Our annotations for testing are excellent, and they greatly ease the developer experience. Currently, all the values need to be provided as a string. This is a limitation of java annotat…
-
### Bug description
Refactors in Camel (based around AbstractTestSupport) made the scenario covered by `DoubleRoutesPerClassTest` invalid.
The test are using `Lifecycle.PER_CLASS`, therefore the rou…
-
Sometimes, you want to ensure that your code behaves the same way for all code paths, even if different feature flags are involved.
Junit5 has [parameterized tests](https://junit.org/junit5/docs/c…
-
I'm running a server based on the [Vert.x](vertx.io) framework. To support testing of asynchronous code, they provide a JUnit5 extension which injects an instance of Vertx and a VertxTestContext. In o…
-
Hi I used for some months this project and I saw that sometimes we need to have some boilerplate code for use it.
Right now we must to create always an instace and setup manually the injection of the…