Skip to content
Advertisement

Mockito/PowerMock: how to reset a mocked static variable in SUT?

I hate to introduce Unit-tests into a legacy code base, but I have to.
Up untill now I successfully introduced unit-testing into the legacy code base using Mockito and PowerMock. Worked perfectly well until I met with this situation:

in the SUT, there’re several static varibles (which I mocked with the help of PowerMock, mocking static methods and mocking constructors).
Now in the first test method, all worked fine and the mocked static var returned the expected output value.
but in the subsequent test methods, the mocked static object always returns value that has been set in the first test, although I did call reset() on it before the tests.

JavaScript



Since the constructor of SUT only instantiates c1 and c2 if the static c1 is null, they (c1, c2) don’t get re-instantiated in sub-sequence calls. What I don’t understand is why reset(c1), reset(c2) have no effect in test2?

Any idea?

Advertisement

Answer

Got it work finally. Basically, I can’t set the stub (the mocked static instance variable) in two different test runs. I have to setup the expected behavior in the first @Before.
So instead of using

JavaScript

I should use this sequence:

JavaScript

Some limitation(bug?) in PowerMock/Mockito?

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement