If I have a appplication.properties like:
url=someUrl
user=userOne
password=ABCD
But if I want to be able to set the password when testing to something else, lets say:
password=someTest
How do I do that?
I need to do this in one test
@Test
void checkSomething{
//change/override password before calling someMethod only for this test
someMethod();
}