我正在尝试使用 Junit-5 和 mockito 为 android 编写一个单元测试用例但是当有一个返回语句时如何为这种函数编写测试用例
```public void doSomething() {
if (isTrue()) {
return;
}
some other code
}```
我正在尝试使用 Junit-5 和 mockito 为 android 编写一个单元测试用例但是当有一个返回语句时如何为这种函数编写测试用例
```public void doSomething() {
if (isTrue()) {
return;
}
some other code
}```