Mockito 快速入門
https://segmentfault.com/a/1190000039907700 2.1. 关键依赖 junit-jupiter-engine:5.6.2 mockito-core:3.9.0 < dependency > < groupId > org.junit.jupiter </ groupId > < artifactId > junit-jupiter-engine </ artifactId > < version > 5.6.2 </ version > < scope > test </ scope > </ dependency > < dependency > < groupId > org.mockito </ groupId > < artifactId > mockito-core </ artifactId > < version > 3.9.0 </ version > < scope > test </ scope > </ dependency > 2.2 Mockito Extension 在 JUnit5 中需要添加 mockito-junit-jupiter:3.6.28 依赖,用于支持 MockitoExtension 。 < dependency > < groupId > org.mockito </ groupId > < artifactId > mockito-junit-jupiter </ artifactId > < version > 3.6.28 </ version > < scope > test </ scope > </ dependency > 3. 待测试用例【新增用户】 业务代码 UserServiceImpl 类负责具体的业务逻...