add GameCommandHandlerTest Create a CommandStreamChannelBuilder to inject maxCacheTime Add missing empty disabled test fix EventStreamInMemory.readAll
16 lines
415 B
Kotlin
16 lines
415 B
Kotlin
package eventDemo.app.event.projection
|
|
|
|
import io.kotest.core.spec.style.FunSpec
|
|
|
|
class GameStateTest :
|
|
FunSpec({
|
|
xtest("isReady") { }
|
|
xtest("nextPlayer") { }
|
|
xtest("nextPlayerTurn") { }
|
|
xtest("playerDiffIndex") { }
|
|
xtest("cardOnBoardIsForYou") { }
|
|
xtest("playableCards") { }
|
|
xtest("playerHasNoCardLeft") { }
|
|
xtest("canBePlayThisCard") { }
|
|
})
|