You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is currently being observed in version 3.4.3.
Here is quick bit of code to highlight issue
@SpringBootTestclassMockObjectTest {
@TestvoiddoNothing() {
// test started up fine
}
@TestConfigurationstaticclassInitMocks {
@MockBean// deprecated and set for removal in 3.6.0privateSomeObjectmockBean;
@MockitoBeanprivateSomeObjectmockitoBean;
@PostConstructpublicvoidinit() {
assertNotNull(mockBean); // successfulassertNotNull(mockitoBean); // fails
}
}
}