commonMain.com.github.mejiomah17.yasb.sqlite.SqliteUpdateTest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of database-sqlite-test-fixtures-jvm Show documentation
Show all versions of database-sqlite-test-fixtures-jvm Show documentation
An YASB database-sqlite-test-fixtures module
The newest version!
package com.github.mejiomah17.yasb.sqlite
import com.github.mejiomah17.yasb.core.transaction.TransactionAtLeastRepeatableRead
import com.github.mejiomah17.yasb.dsl.TestTable
import com.github.mejiomah17.yasb.dsl.UpdateTest
interface SqliteUpdateTest<
TABLE : TestTable,
DRIVER_DATA_SOURCE,
DRIVER_STATEMENT,
DIALECT : SqliteDatabaseDialect,
TRANSACTION : TransactionAtLeastRepeatableRead
> :
UpdateTest {
override fun initSqlScripts(): List {
return listOf(
"DELETE from test"
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy