当前位置:   article > 正文

junit5 mock静态方法 Mockito.mockStatic()

junit5 mock静态方法

junit5 mock静态方法

环境

jdk11 , junit5 ,springboot

pom

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- mockito static method -->
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-inline</artifactId>
            <version>4.1.0</version>
            <scope>test</scope>
        </dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

代码

@SpringBootTest
class MockStaticTest {

    @InjectMocks
    TestService testService;

    @Test
    void apply2() {
        try (MockedStatic<TestUtil> mock = Mockito.mockStatic(TestUtil.class)) {
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/712491
推荐阅读
相关标签
  

闽ICP备14008679号