Created two empty Spring-Boot projects for the consumer and the provider
[demos/pact] / consumer / src / test / java / de / juplo / demos / consumer / ConsumerApplicationTests.java
1 package de.juplo.demos.consumer;
2
3 import org.junit.jupiter.api.Test;
4 import org.springframework.boot.test.context.SpringBootTest;
5
6 @SpringBootTest
7 class ConsumerApplicationTests {
8
9         @Test
10         void contextLoads() {
11         }
12
13 }