我是靠谱客的博主 傲娇麦片,最近开发中收集的这篇文章主要介绍no tests were found异常springBoot配置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 No tests were found

 No tests were found

 问题分析

1、

进行单元测试Q的方法不能有返回值,否则会报No test were found

2、进行单元测试的方法不能私有化

3. junitQ版本问题

 问题分析

1、

进行单元测试Q的方法不能有返回值,否则会报No test were found

2、进行单元测试的方法不能私有化

3. junitQ版本问题

 问题分析

1、

进行单元测试Q的方法不能有返回值,否则会报No test were found

2、进行单元测试的方法不能私有化

3. junitQ版本问题

下面这个会报错!!! 

package com.kgc.mynacos.myconfig;

import com.kgc.mynacos.myconfig.services.ReadConfService;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

import javax.annotation.Resource;

@SpringBootTest
public class MyTest {
    @Resource
    private ReadConfService rcs;

    @Test
    private void test01(){
        while(true){
            System.out.println(rcs.getInfo());

            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                throw new RuntimeException(e);
            }
        }

    }
}

改成下面这个就行! 

package com.kgc.mynacos.myconfig;
import com.kgc.mynacos.myconfig.services.ReadConfService;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import javax.annotation.Resource;
@SpringBootTest
public class MyTest {
@Resource
private ReadConfService rcs;
@Test
public void test01(){
while(true){
System.out.println(rcs.getInfo());
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}
}
}
#注意:Test导包有2个 选api这个
#@springBootTest后面单词别拼错
#测试类使用 不要使用private!!!!!不然报错no tests were found

最后

以上就是傲娇麦片为你收集整理的no tests were found异常springBoot配置的全部内容,希望文章能够帮你解决no tests were found异常springBoot配置所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部