我被通缉了,但没有被征召。CheckFingerPrintWhenTouchidEnabled()
方法在行Verify(fingerPrintHelper,times(1)).InitializeFingerPrint(any());
处与此模拟错误没有任何交互。甚至我也嘲弄了这个对象&在调试initializeFingerprint(..)
函数时被调用。
下面是我要测试的函数,
@RequiresApi(Build.VERSION_CODES.M)
public void checkFingerPrint() {
if (fingerPrintHelper.isDeviceReadyForFingerPrint()) {
boolean isFingerPrintEnable = sharedPreference.getBoolean(SpKeys.KEY_FINGER_PRINT, false);
if (isFingerPrintEnable) {
fingerPrintHelper.initializeFingerPrint(this);
}
} else {
sharedPreference.putBoolean(SpKeys.KEY_FINGER_PRINT, false).commit();
}
}
public class LoginActivity extends AppCompatActivity {
public FingerPrintHelper fingerPrintHelper;
ActivityLoginBinding binding;
private LoginViewModel loginViewModel;
private SharedPreferenceManager sharedPreferenceManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
sharedPreferenceManager = new SharedPreferenceManager(getApplicationContext(), SpKeys.MY_SP);
fingerPrintHelper = new FingerPrintHelper(this);
binding = DataBindingUtil.setContentView(this, R.layout.activity_login);
loginViewModel = ViewModelProviders.of(this).get(LoginViewModel.class);
binding.setViewModel(loginViewModel);
binding.setLifecycleOwner(this);
checkFingerPrint();
}
@RequiresApi(Build.VERSION_CODES.M)
public void checkFingerPrint() {
if (fingerPrintHelper.isDeviceReadyForFingerPrint()) {
boolean isFingerPrintEnable = sharedPreferenceManager.getBoolean(SpKeys.KEY_FINGER_PRINT, false);
if (isFingerPrintEnable) {
fingerPrintHelper.initializeFingerPrint(this);
}
} else {
sharedPreferenceManager.setBoolean(SpKeys.KEY_FINGER_PRINT, false);
}
}
}
public class LoginActivityTest {
LoginActivity loginActivity;
@Mock
FingerPrintHelper fingerPrintHelper;
@Rule
public ActivityTestRule<LoginActivity> loginActivityRule = new ActivityTestRule<>(
LoginActivity.class);
Context context;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
loginActivity = loginActivityRule.getActivity();
context = getInstrumentation().getTargetContext();
}
@Test
public void checkFingerPrintWhenTouchIdDisabled() {
SharedPreferences sharedPreferences = context.getSharedPreferences(SpKeys.MY_SP, Context.MODE_PRIVATE);
when(fingerPrintHelper.isDeviceReadyForFingerPrint()).thenReturn(false);
loginActivity.checkFingerPrint();
Assert.assertFalse(sharedPreferences.getBoolean(SpKeys.KEY_FINGER_PRINT, false));
verify(fingerPrintHelper, never()).initializeFingerPrint(any());
}
@Test
public void checkFingerPrintWhenTouchIdEnabled() {
SharedPreferences sharedPreferences = context.getSharedPreferences(SpKeys.MY_SP, Context.MODE_PRIVATE);
SharedPreferences.Editor preferencesEditor = sharedPreferences.edit();
when(fingerPrintHelper.isDeviceReadyForFingerPrint()).thenReturn(true);
preferencesEditor.putBoolean(SpKeys.KEY_FINGER_PRINT, true).commit();
loginActivity.checkFingerPrint();
/* Below verification for `initializeFingerPrint()` is throwing error as,
Actually, there were zero interactions with this mock. error,
Even I have mock the object & while debugging the method is getting invoked also.
If I debug my code it calls this function but in test cases it shows above error
*/
verify(fingerPrintHelper, times(1)).initializeFingerPrint(any());
}
}
尝试以下操作手动设置模拟(不使用注释):
@Before
public void setUp() {
loginActivity = loginActivityRule.getActivity();
loginActivity.fingerPrintHelper = Mockito.mock(FingerPrintHelper.class);
// ...
}
如果loginactivy
以前可以成功创建,那么您现在就不会遇到问题。
和fingerprinthelper
似乎是public
所以很容易设置。
但是如果您想正确地进行操作,您可以提供一个设置器。
或者您希望保留注释以创建fingerprinthelper
。
@Mock
FingerPrintHelper fingerPrintHelper;
@Before
public void setUp() {
MockitoAnnotations.initMocks(this);
loginActivity = loginActivityRule.getActivity();
loginActivity.fingerPrintHelper = fingerPrintHelper;
// ...
}
所以您唯一能做的就是手动将mock传递给正在测试的对象。
MyDriveRepository.getMyDriveItemSelectedPathuri一直返回null。我试着查看以下链接,但没有找到解决问题的方法。
我尝试了例外情况下给出的解决方案:mockito想要但没有调用,实际上与这个mock没有任何交互,而这个mockito也想要但没有调用:实际上,与这个mock没有任何交互但仍然得到相同的错误。我是不是漏掉了什么?以下是me的实现:-
我已经通过StackOverflow上的帖子。 想要但没有被调用:实际上,这个模拟没有任何交互。 我确实做了被要求的事情,但我仍然错过了一些东西。你能帮帮我我错过了什么吗? 我的Java代码: 我的单元测试: 一切正常工作,除了我得到错误作为
更新下面是异常消息: 更新2用真实实例替换mocked WithDefinitions对象后,我得到以下输出:
当我试图通过传递强制转换的值来模拟重载的方法时,我得到了以下错误。 例如,为了模拟 我正在做 但是当我运行测试用例时,我会得到以下错误 为什么要调用,甚至在专门调用了之后? 附加详细信息 logWarn的定义
在执行以下步骤后,我得到了错误:想要但没有调用:实际上,与这个模拟没有任何交互。我不明白我在这里遗漏了什么。