坑,在进行单元测试时出现的错误,完整的错误是:
警告: Runner org.junit.internal.runners.ErrorReportingRunner (used on class cn.itcast.mq.spring.SpringAmqpTest) does not support filtering and will therefore be run completely.
org.junit.runners.model.InvalidTestClassError: Invalid test class 'cn.itcast.mq.spring.SpringAmqpTest':
1. No runnable methods
原因是因为我们使用@test注解时,IDEA自动导的包错了
我们来到导包处 ,测试包是这个,是错的
import org.junit.jupiter.api.Test;
改成
import org.junit.Test;
重新运行,不在报错