We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f12fea commit 7d8c1a9Copy full SHA for 7d8c1a9
src/test/java/com/example/solidconnection/database/FlywayMigrationTest.java
@@ -0,0 +1,19 @@
1
+package com.example.solidconnection.database;
2
+
3
+import com.example.solidconnection.support.TestContainerSpringBootTest;
4
+import org.junit.jupiter.api.Test;
5
+import org.springframework.test.context.TestPropertySource;
6
7
+@TestContainerSpringBootTest
8
+@TestPropertySource(properties = {
9
+ "spring.flyway.enabled=true",
10
+ "spring.flyway.baseline-on-migrate=true",
11
+ "spring.jpa.hibernate.ddl-auto=validate"
12
+})
13
+class FlywayMigrationTest {
14
15
+ @Test
16
+ void flyway_스크립트가_정상적으로_수행되는지_확인한다() {
17
18
+ }
19
+}
0 commit comments