I have a value configured in my quarkus application.properties
skipvaluecheck=true
Now whenever I want to execute my tests, I want to have this value to be set to false instead of true. But I do not want to change in application.properties because it will affect the latest application deployment. I just want my tests to be executed with value false so that my test coverage goes green in sonar.
From java code, I fetch this value by doing below
ConfigProvider.getConfig().getValue("skipvaluecheck", Boolean.class);
Something similar already exists in Sprint boot and I am curious if such thing also exist in quarkus
Override default Spring-Boot application.properties settings in Junit Test