Files
gs-consuming-web-service/initial/src/test/java/com/example/consumingwebservice/ConsumingWebServiceApplicationTests.java
Jay Bryant ac586e1611 Use the Spring Initializr (and Boot 2.2)
I rewrote the document and the code (mostly changing package names) to use the Spring Initializr. I also modified the build files to use Spring Boot 2.2.0, which necessitated replacing the Gradle wrappers. Note that there are no tests (other than the one I pulled in from the src directory that the Initializr created).
2019-11-01 10:13:20 +00:00

14 lines
236 B
Java

package com.example.consumingwebservice;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ConsumingWebServiceApplicationTests {
@Test
void contextLoads() {
}
}