mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
28 lines
887 B
Kotlin
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)) }
|
|
}
|
|
} |