I am trying to write a unit test case for android using Junit-5 and mockito But how to write test case for this kind of function when there is a return statment
```public void doSomething() {
if (isTrue()) {
return;
}
some other code
}```