I have a string variable in DAO interface and its implementation is used in junit.
I want to modify value of that variable before i invoke a method in DAO under JUnit.
For example the variable in interface has oracle native query and i want that be replace with a embedded database before i run the method which uses that variable.
I tried this but it doesn't work
Is there a way to do that?