mirror of https://github.com/usbharu/Hideout.git
test: Job定義追加のテストを追加
This commit is contained in:
parent
bcb17b5700
commit
1e917e591f
|
@ -0,0 +1,16 @@
|
|||
package dev.usbharu.hideout.service.job
|
||||
|
||||
import kjob.core.Job
|
||||
import org.jetbrains.exposed.sql.Database
|
||||
import org.junit.jupiter.api.Test
|
||||
|
||||
class KJobJobWorkerServiceTest {
|
||||
|
||||
object TestJob : Job("test-job")
|
||||
|
||||
@Test
|
||||
fun init() {
|
||||
val kJobJobWorkerService = KJobJobWorkerService(Database.connect("jdbc:h2:mem:"))
|
||||
kJobJobWorkerService.init(listOf(TestJob to { it -> execute { it as TestJob;println(it.propNames) } }))
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue