Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. package br.com.condessalovelace.springbootapp;
  2.  
  3. import org.junit.Test;
  4. import org.junit.runner.RunWith;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.test.context.ContextConfiguration;
  7. import org.springframework.test.context.junit4.SpringRunner;
  8. import org.springframework.web.client.RestTemplate;
  9.  
  10. @RunWith(SpringRunner.class)
  11. @ContextConfiguration(classes = {RestTemplate.class})
  12. public class OiServiceTest {
  13. @Autowired
  14. private RestTemplate restTemplate;
  15.  
  16. @Test
  17. public void testOiServiceSucesso() {
  18.  
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement