File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
src/test/java/com/baeldung/feign/clients Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 5858 <artifactId >spring-boot-maven-plugin</artifactId >
5959 <version >${spring-boot-maven-plugin.version} </version >
6060 </plugin >
61+ <plugin >
62+ <groupId >org.apache.maven.plugins</groupId >
63+ <artifactId >maven-surefire-plugin</artifactId >
64+ <version >${maven-surefire-plugin.version} </version >
65+ <configuration >
66+ <reuseForks >true</reuseForks >
67+ <excludes >
68+ <exclude >**/*IntegrationTest.java</exclude >
69+ <exclude >**/*LiveTest.java</exclude >
70+ </excludes >
71+ </configuration >
72+ </plugin >
6173 </plugins >
6274 </pluginManagement >
6375 </build >
Original file line number Diff line number Diff line change 1818import static org .junit .Assert .assertThat ;
1919import static org .junit .Assert .assertTrue ;
2020
21+ /**
22+ * Consumes https://github.com/Baeldung/spring-hypermedia-api
23+ */
2124@ Slf4j
2225@ RunWith (JUnit4 .class )
23- public class BookClientTest {
26+ public class BookClientLiveTest {
2427 private BookClient bookClient ;
2528
2629 @ Before
You can’t perform that action at this time.
0 commit comments