spring-liquibase-template/db-patcher/src/test/java/me/bvn13/service/db/patcher/PatcherTest.java

18 lines
589 B
Java

package me.bvn13.service.db.patcher;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import static org.springframework.boot.test.context.SpringBootTest.WebEnvironment.NONE;
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = NONE, classes = me.bvn13.service.db.patcher.DbPatcherTestConfig.class)
public class PatcherTest {
@Test
public void testApplicationContext() {
System.out.println("Application context is started");
}
}