mirror of
https://github.com/usbharu/Hideout.git
synced 2026-08-21 23:24:16 +00:00
test: Job定義追加のテストを追加
This commit is contained in:
@@ -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) } }))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user