create GameCommandRunner to extract business logic

This commit is contained in:
2025-03-11 21:59:17 +01:00
parent a2756d7fdb
commit 28075feff2
9 changed files with 80 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
package eventDemo.app.command
import io.kotest.core.spec.style.FunSpec
class GameCommandRunnerTest :
FunSpec({
test("run should run the correct command") { }
})