We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d41ed34 commit aa26286Copy full SHA for aa26286
android/src/test/java/com/instabug/reactlibrary/RNInstabugAPMModuleTest.java
@@ -106,12 +106,11 @@ public void givenTruesetEnabled_whenQuery_thenShouldCallNativeApiWithEnabled() {
106
107
@Test
108
public void given$endAppLaunch_whenQuery_thenShouldCallNativeApiWithEnabled() {
109
- // given
110
- PowerMockito.mockStatic(APM.class);
+
111
// when
112
apmModule.endAppLaunch();
113
// then
114
- PowerMockito.verifyStatic(VerificationModeFactory.times(1));
+ verify(APM.class, times(1));
115
APM.endAppLaunch();
116
}
117
0 commit comments