【单元测试】【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命名有关?

相关推荐
大白要努力!32 分钟前
android 使用SQLiteOpenHelper 如何优化数据库的性能
android·数据库·oracle
Estar.Lee38 分钟前
时间操作[取当前北京时间]免费API接口教程
android·网络·后端·网络协议·tcp/ip
Winston Wood1 小时前
Perfetto学习大全
android·性能优化·perfetto
浩宇软件开发1 小时前
Android开发,使用TabLayout+ViewPager2实现校园健康安全宣传
android studio·android开发
霍格沃兹测试开发学社测试人社区4 小时前
数据驱动与并行策略:用 JUnit 5 让软件测试更高效
软件测试·测试开发·junit
霍格沃兹测试开发学社测试人社区4 小时前
软件测试丨探索 JUnit 5 中的参数化与调度执行:提升软件测试的效率与灵活性
软件测试·测试开发·junit
Eastsea.Chen6 小时前
MTK Android12 user版本MtkLogger
android·framework
世间万物皆对象11 小时前
Spring Boot核心概念:日志管理
java·spring boot·单元测试
长亭外的少年13 小时前
Kotlin 编译失败问题及解决方案:从守护进程到 Gradle 配置
android·开发语言·kotlin