下述文章翻译自CODE WITH ARHO
-
JUnit5
教程关注于如何为Java
和Kotlin
代码块编写和运行单元测试,本教程针对初学者和已经熟悉JUnit
某些版本的人员,本教程中的文章已分为不同的部分。 -
在本教程中,我们将了解如何为
Spring Boot
应用程序编写测试,我们将使用Spring Boot
提供的测试支持和附加测试库。我们将从基础知识开始,逐步完成更高级的主题, 这些主题将涵盖不同级别的测试,从独立的单元测试到针对整个
Spring Boot
应用程序执行的集成测试。SpringBoot
单元测试基础
从这里开始Introduction to Testing Spring Boot Applications Spring Boot Unit Testing Testing Web Controllers With Spring Boot @WebMvcTest Testing the Persistence Layer With Spring Boot @DataJpaTest A More Practical Guide to JUnit 5 Parameterized Tests 中级主题
已经掌握基础知识后Testing Serialization With Spring Boot @JsonTest Testing Spring Boot WebClient With MockWebServer Testing Spring Security Spring Boot Testing Strategy
JUnit5翻译系列集合
2023-07-03
[译]如何测试私有方法
2023-07-02
[译]Junit 5 预期异常 - 如何检测异常是否抛出
2023-06-27
[译]JUnit5 Gradle示例 - 基于Gradle运行测试
2023-06-23
[译]JUnit5 Maven示例-基于Surefire运行测试
2023-06-21
[译]从JUnit 4 迁移到JUnit 5 - 权威指南
2023-06-21
[译]JUnit5 整合Kotlin
2023-06-19
[译]在JUnit 5中使用Mockito
2023-06-17
[译]JUnit 5 参数化测试实用指南
2023-06-16
[译]JUnit 5 生命周期 - 注释之前和之后
2023-05-02
[译]JUnit 5 嵌套测试 - 将关联的测试分组在一起
2023-05-01
[译]JUnit 5 断言 - 验证测试结果
2023-05-01
[译]JUnit 5 入门 - 编写第一段测试代码