Files
apollo/game/plugin/cmd/test/AnimateCommandTests.kt
T
2018-09-04 00:02:00 +01:00

28 lines
887 B
Kotlin

import io.mockk.verify
import org.apollo.game.command.Command
import org.apollo.game.model.Animation
import org.apollo.game.model.World
import org.apollo.game.model.entity.Player
import org.apollo.game.model.entity.setting.PrivilegeLevel
import org.apollo.game.plugin.testing.junit.ApolloTestingExtension
import org.apollo.game.plugin.testing.junit.api.annotations.TestMock
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.extension.ExtendWith
@ExtendWith(ApolloTestingExtension::class)
class AnimateCommandTests {
@TestMock
lateinit var world: World
@TestMock
lateinit var player: Player
@Test
fun `Plays the animation provided as input`() {
player.privilegeLevel = PrivilegeLevel.MODERATOR
world.commandDispatcher.dispatch(player, Command("animate", arrayOf("1")))
verify { player.playAnimation(Animation(1)) }
}
}