Skip to content

Instantly share code, notes, and snippets.

@SDiamante13
Last active March 6, 2020 01:50
Show Gist options
  • Select an option

  • Save SDiamante13/12650f2ebc9e9a11e0dfc37255d0355d to your computer and use it in GitHub Desktop.

Select an option

Save SDiamante13/12650f2ebc9e9a11e0dfc37255d0355d to your computer and use it in GitHub Desktop.
An example of how to use @mock and @Injectmocks
@RunWith(MockitoJUnitRunner.class)
public class CustomerServiceTest {
@Mock
private CustomerRepository mockCustomerRepository;
@InjectMocks
private CustomerService customerService;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment