i'm having a trouble with Junit where when I run my test case after changing something in the code, junit does not read through the updated code but instead reads from the original code. For eg: if I change a parameter from "xxx" to "yyy", Junit is going to run with "xxx" as parameter even after i save it with "yyy".
One solution I found to it was to go to the pom.xml file and remove all the dependencies, do the maven update, let the error show up and then put back the dependencies back in and then by saving it. I'm not sure why is this happening, if its Junit or Maven I'm having trouble with.
Anyone know anything about this????