如何在Java中模拟静态方法



我有一个类FileGenerator,我正在为generateFile()方法写一个测试,应该做以下事情:

1)在BlockAbstractFactory上调用静态方法getBlockImpl(FileTypeEnum)

2)它应该从子类方法getBlocks()中填充变量blockList

3)它应该从最终的辅助类FileHelper中调用静态方法createFile,并传递一个String参数

4)它应该调用blockList

中每个BlockController的run方法到目前为止,我有这个空方法:
public class FileGenerator {
    // private fields with Getters and Setters
    public void generateBlocks() {
    }
}

我正在使用JUnit, Mockito模拟对象,我尝试使用PowerMockito模拟静态和最终类(Mockito不这样做)。

我的问题是:我的第一个测试(从BlockAbstractFactory调用方法getBlockList())是通过的,即使在generateBlocks()中没有实现。我已经在BlockAbstractFactory中实现了静态方法(到目前为止返回null),以避免Eclipse语法错误。

如何测试静态方法是否在fileGerator.generateBlocks()内调用?

这是我的测试类,到目前为止:

@RunWith(PowerMockRunner.class)
public class testFileGenerator {
    FileGenerator fileGenerator = new FileGenerator();
    @Test
    public void shouldCallGetBlockList() {
            fileGenerator.setFileType(FileTypeEnum.SPED_FISCAL);
            fileGenerator.generateBlocks();
            PowerMockito.mockStatic(BlockAbstractFactory.class);
            PowerMockito.verifyStatic();
            BlockAbstractFactory.getBlockImpl(fileGenerator.getFileType());
    }
}

我没有使用PowerMock的经验,但是因为您还没有得到答案,所以我一直在阅读文档,看看我是否可以在您的路上帮助您。

我发现您需要准备PowerMock,以便我知道需要准备哪些静态方法来模拟。像这样:

@RunWith(PowerMockRunner.class)
@PrepareForTest(BlockAbstractFactory.class) // <<=== Like that
public class testFileGenerator {
    // rest of you class
}

在这里你可以找到更多的信息。

有帮助吗?

工作示例:

@RunWith(PowerMockRunner.class)
@PrepareForTest({ClassStaticA.class, ClassStaticB.class})
public class ClassStaticMethodsTest {
    @Test
    public void testMockStaticMethod() {
        PowerMock.mockStatic(ClassStaticA.class);
        EasyMock.expect(ClassStaticA.getMessageStaticMethod()).andReturn("mocked message");
        PowerMock.replay(ClassStaticA.class);
        assertEquals("mocked message", ClassStaticA.getMessageStaticMethod());
    }

相关内容

  • 没有找到相关文章

最新更新