I'm using Quarkus 1.10.5.Final
I have a junit like this
@QuarkusTest
class MachineHelperTest {
but why when the test starts it will execute classes that implements QuarkusTestResourceLifecycleManager
like
public class KindClusterForQuarkusTest implements QuarkusTestResourceLifecycleManager {
it's a plain junit.. no injection, no cluster.. real plain junit.
but I have also other tests that are using TestResources like
@QuarkusTest
@QuarkusTestResource(TwinApiServiceDockerCompose.class)
@QuarkusTestResource(KindClusterForQuarkusTest.class)
public class MachineMainCodecControllerTestIT {
it will work OK, because I expect to launch a cluster +docker for thoses tests.