BAEL-3751: Add integration test

This commit is contained in:
Lukasz Rys 2020-04-27 12:51:31 +02:00
parent f22de7eecf
commit d5d6236ae1
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package com.baeldung.cicd;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class CiCdApplicationIntegrationTest {
@Test
public void contextLoads() {
}
}