
单元测试
RogerXue12345
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MockBean
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>...原创 2019-10-31 15:12:39 · 433 阅读 · 0 评论 -
单元测试案例
1.案例1,业务逻辑判断 int foo(int a, int b) { if (a < 10 || b < 10) // 判定 { return 0; // 分支一 } else { return 1; // 分支二 } } 设计判定覆盖案例时,我们只需要考虑判定结果为true和false两种情...原创 2019-02-18 11:00:54 · 2233 阅读 · 0 评论