【单元测试】【Android】JUnit 4 和 JUnit 5 的差异记录

背景

Jetbrain IDE 支持生成 Test 类,其中选择JUnit5 和 JUnit,但是感觉这不是标准的单元测试,因为接口命名吧。

差异对比

两者生成的单测API名称同原API,没加test前缀的。使用差异主要表现在:

  • setUp & tearDown 的注解
  • 引用的junit包

| | JUnit 4 | JUnit 5 |
| setUp 注解 | Before | BeforeEach |
| tearDown 的注解 | After | AfterEach |
| 引用的junit包 | org.junit.Test | org.junit.jupiter.api.Test |
| 类名修饰符 | 有修饰符 public class UtilTest | 无修饰符, 默认 class UtilTest |

方法修饰符 有修饰符 @Before public void setUp() throws Exception { } 无修饰符, 默认@BeforeEach void setUp() { }
[JUnit 版本差异项]

代码template

JUnit 5

java 复制代码
import static org.junit.jupiter.api.Assertions.*;

import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

class UtilTest {

    @BeforeEach
    void setUp() {
    }

    @AfterEach
    void tearDown() {
    }

    @Test
    void customTypeSummary() {
    }

JUnit 4

要求类是公开public的,否则代码报错:

Test class 'UtilTest' is not constructable because it is not 'public'

java 复制代码
import static org.junit.Assert.*;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class UtilTest {

    @Before
    public void setUp() throws Exception {
    }

    @After
    public void tearDown() throws Exception {
    }

    @Test
    public void customTypeSummary() {
    }

另外有个疑问,怎么才能让main java 类文件能检测到对应的单元测试Coverage?是否跟类生成的方式或者Test类/API命名有关?

相关推荐
Bervin121382 小时前
Flutter Android环境的搭建
android·flutter
e***87708 小时前
windows配置永久路由
android·前端·后端
fouryears_2341710 小时前
现代 Android 后台应用读取剪贴板最佳实践
android·前端·flutter·dart
YF021111 小时前
Frida for MacBook/Android 安装配置
android·前端
雨白11 小时前
Android实战:构建高可维护的日志系统
android
茄子凉心12 小时前
android 开机启动App
android·java·开发语言
IMPYLH13 小时前
Lua 的 require 函数
java·开发语言·笔记·后端·junit·lua
z***565613 小时前
Nginx实现接口复制
运维·nginx·junit
2501_9371931414 小时前
神马影视 8.8 版源码:4K 播放优化体验测评
android·源码·源代码管理·机顶盒
一缕猫毛16 小时前
JUnit单元测试
junit·单元测试