解决 Android 单元测试 No tests found for given includes:

问题

报错:

Execution failed for task ':testDebugUnitTest'.

> No tests found for given includes:

解决方案

1、一开始以为是没有给测试类加public修饰

2、然后替换 @Test 注解的包可以解决,将 org.junit.jupiter.api.Test 修改为 org.junit.Test

java 复制代码
import org.junit.Test; //OK

import org.junit.jupiter.api.Test;//No use

org.junit.jupiter.api.Test是IDE 插件默认生成Test文件的引用。

两个类的实现是不一样的,介绍如下:

org.junit.jupiter.api

java 复制代码
package org.junit.jupiter.api;

@Target({ ElementType.ANNOTATION_TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@API(status = STABLE, since = "5.0")
@Testable
public @interface Test {
}

org.junit

java 复制代码
package org.junit;


@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Test {

    /**
     * Default empty exception.
     */
    static class None extends Throwable {
        private static final long serialVersionUID = 1L;

        private None() {
        }
    }

    /**
     * Optionally specify <code>expected</code>, a Throwable, to cause a test method to succeed if
     * and only if an exception of the specified class is thrown by the method. If the Throwable's
     * message or one of its properties should be verified, the
     * {@link org.junit.rules.ExpectedException ExpectedException} rule can be used instead.
     */
    Class<? extends Throwable> expected() default None.class;

    long timeout() default 0L;
}

Note:使用 org.junit.Test 的测试方法test要被public修饰。

后续报错

相关推荐
李歘歘26 分钟前
Golang——channel
android·开发语言·后端·golang
雪人酱37 分钟前
自动填充服务AutoFillService的QA
android
molong9315 小时前
Android广播和阿里云消息推送服务
android·阿里云·云计算
肖老师xy10 小时前
uniapp使用chooseLocation安卓篇
android·javascript·uni-app
丁卯40410 小时前
golang单元测试
开发语言·golang·单元测试
勿忘初心9111 小时前
Android车机DIY开发之软件篇(八)单独编译
android·嵌入式硬件·mcu·学习
zjy_hll11 小时前
RK3568 Android 13 内置搜狗输入法小计
android
云卓SKYDROID11 小时前
工业级手持地面站(支持Android和IOS)技术详解!
android·ios·无人机·科普·高科技·云卓科技
Hello.Reader14 小时前
深入浅出 OpenResty
junit·openresty
satadriver15 小时前
android分区和root
android