场景:
同一个方法多次调用,需要返回不同的值
代码:
串行执行,多个返回值,就多个thenReturn
//1、模拟手机号已注册;2、注册成功后的账号
when(accountMapper.getAccount(any(), any())).thenReturn(null).thenReturn(account);
场景:
同一个方法多次调用,需要返回不同的值
代码:
串行执行,多个返回值,就多个thenReturn
//1、模拟手机号已注册;2、注册成功后的账号
when(accountMapper.getAccount(any(), any())).thenReturn(null).thenReturn(account);