Question

MyClass.java:

package test;
public final class MyClass {
    public MyClass() { }
    public Package returnPackage() {
        return MyClass.class.getPackage();
    }
}

TestClass.java:

package test;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import static org.powermock.api.mockito.PowerMockito.*;

@RunWith(PowerMockRunner.class)
@PrepareForTest(MyClass.class)
public class TestClass {
    @Test
    public void test() throws Exception {
        System.out.println(new MyClass().returnPackage());
        mockStatic(MyClass.class);
        System.out.println(new MyClass().returnPackage());
    }
}

However, this results in:

package test
null

Any MyClass.class method call returns null after PowerMockito.mockStatic(Class). Is there any way to prevent this?

Was it helpful?

Solution

Workaround: I can use the EasyMock-API to set up the static mocks without PowerMockito.mockStatic().

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top