generated from pricelees/issue-pr-template
12 lines
303 B
Kotlin
12 lines
303 B
Kotlin
package roomescape.util
|
|
|
|
import org.springframework.test.context.TestPropertySource
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
@TestPropertySource(properties = [
|
|
"spring.jpa.hibernate.ddl-auto=none",
|
|
"spring.sql.init.mode=never"
|
|
])
|
|
annotation class NoSqlInitialize
|