Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. @SpringBootTest
  2. @RunWith(SpringRunner.class)
  3. public class ProductRepositoryUnitTest {
  4. @MockBean
  5. private MongoConverter mongoConverter;
  6.  
  7. [...]
  8.  
  9. @Test
  10. public void searchProductTest() {
  11. Mockito.when(mongoTemplate.getConverter())
  12. .then(ignoredInvocation -> mongoConverter);
  13. [...]
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement