我是靠谱客的博主 高贵黄豆,最近开发中收集的这篇文章主要介绍SpringBoot @FixMethodOrder 如何调整单元测试顺序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

SpringBoot @FixMethodOrder 调整单元测试顺序

@RunWith(SpringRunner.class)
@SpringBootTest
@FixMethodOrder(MethodSorters.JVM)
@Ignore
public class ReviewServiceTest {
    @Autowired
    ReviewService reviewService;
}
  • MethodSorters.JVM

Leaves the test methods in the order returned by the JVM. Note that the order from the JVM may vary from run to run (按照JVM得到的方法顺序,也就是代码中定义的方法顺序)

  • MethodSorters.DEFAULT(默认的顺序)

Sorts the test methods in a deterministic, but not predictable, order() (以确定但不可预期的顺序执行)

  • MethodSorters.NAME_ASCENDING

Sorts the test methods by the method name, in lexicographic order, with Method.toString() used as a tiebreaker (按方法名字母顺序执行)

如果不生效, 应该就是Junit版本问题, 注意这一点

SpringBoot Bean加载顺序 Order无效

    @Bean
    @Order(1)
    public xxx1 createXxx1() {
        return new xxx1();
    }
    @Bean
    @Order(2)
    public xxx2 createXxx2() {
        return new xxx2();
    }

经过测试 ,并不起作用。

目前经过测试、Order注解只有对aop的拦截顺序有效

以上为个人经验,希望能给大家一个参考,也希望大家多多支持靠谱客。

最后

以上就是高贵黄豆为你收集整理的SpringBoot @FixMethodOrder 如何调整单元测试顺序的全部内容,希望文章能够帮你解决SpringBoot @FixMethodOrder 如何调整单元测试顺序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(128)

评论列表共有 0 条评论

立即
投稿
返回
顶部