@SqlConfig

@SqlConfig 定义用于确定如何解析并运行使用 @Sql 注解配置的 SQL 脚本的元数据。以下示例展示了如何使用它:

Java
@Test
@Sql(
	scripts = "/test-user-data.sql",
	config = @SqlConfig(commentPrefix = "`", separator = "@@") (1)
)
void userTest() {
	// run code that relies on the test data
}
1 在 SQL 脚本中设置注释前缀和分隔符。
Kotlin
@Test
@Sql("/test-user-data.sql", config = SqlConfig(commentPrefix = "`", separator = "@@")) (1)
fun userTest() {
	// run code that relies on the test data
}
2 在 SQL 脚本中设置注释前缀和分隔符。