I have the following code:
public Object parse(){
....
VTDGen vg = new VTDGen();
boolean parsed = vg.parseFile(myFile.getAbsolutePath(), false);
}
I am writing a unit test for this method. When I run the method without mocking VTDGen the parseFile method returns true. However, when I mock it with a spy, it returns false.
My test is as follows:
@Before
public void setup(){
VTDGen vtgGen = new VTDGen();
VTDGen vtgGenSpy = PowerMockito.spy(vtdGen);
PowerMockito.whenNew(VTDGen.class).withNoArguments().thenReturn(vtdGenSpy);
}
@Test
public void myTest(){
// when I run the test parseFile returns false
// if I remove the mocking in the setup, parseFile returns true
}
I was under the impression that Mockito's spy objects should not change the behavior of wrapped objects, so why am I getting false instead of true?
myTestcallsparseandmyFileis passed in. The point is that if I comment outPowerMockito.whenNew,vg.parseFilereturnstruebut with thewhenNewin place (so the spy is used)vg.parseFilereturnsfalse. I thought the spy should just wrap a call to the actual instance, so why is the returned value different? – John B Nov 14 '11 at 13:53vg.parseFileis returning? – jhericks Nov 14 '11 at 16:57parsewas not what I was trying to test but is preventing me from getting to the code I am testing. I pulled out everything else that might be affecting the test and got down to the spy causing the problem. – John B Nov 14 '11 at 17:07vtdGenSpy.parseFile(myFile.getAbsolutePath(), false)(without PowerMockito) returnfalsetoo? – mijer Nov 16 '11 at 21:11