How to use Mockito with JUnit5
问题 How can I use injection with Mockito and JUnit 5? In JUnit4 I can just use the @RunWith(MockitoJUnitRunner.class) Annotation. In JUnit5 is no @RunWith Annotation? 回答1: There are different ways to use Mockito - I'll go through them one by one. Manually Creating mocks manually with Mockito::mock works regardless of the JUnit version (or test framework for that matter). Annotation Based Using the @Mock-annotation and the corresponding call to MockitoAnnotations::initMocks to create mocks works