Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 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.junit4.SpringRunner;
  7. import org.springframework.web.client.RestTemplate;
  8.  
  9. @RunWith(SpringRunner.class)
  10. public class OiServiceTest {
  11. @Autowired
  12. private RestTemplate restTemplate;
  13.  
  14. @Test
  15. public void testOiServiceSucesso() {
  16.  
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement