Skip to content

Instantly share code, notes, and snippets.

@SDiamante13
Created March 5, 2020 14:04
Show Gist options
  • Select an option

  • Save SDiamante13/143a235c0b273ac24996683f4f90156e to your computer and use it in GitHub Desktop.

Select an option

Save SDiamante13/143a235c0b273ac24996683f4f90156e to your computer and use it in GitHub Desktop.
An example of declaring a mock without using annotations.
public class CustomerServiceTest {
private CustomerRepository mockCustomerRepository = Mockito.mock(CustomerRepository.class);
private CustomerService customerService = new CustomerService(customerReposistory);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment