15 lines
336 B
Java
15 lines
336 B
Java
package com.baeldung;
|
|
|
|
import org.junit.Test;
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
public class DataLoaderLiveTest {
|
|
|
|
@Test
|
|
public void exampleTest() {
|
|
RestTemplate restTemplate = new RestTemplate();
|
|
restTemplate.getForObject("http://localhost:8080/startNotification/10", String.class);
|
|
}
|
|
|
|
}
|