Fix MythicMobs test

This commit is contained in:
tastybento 2024-04-14 22:11:41 -07:00
parent ffb955b22b
commit 69a22e917e
1 changed files with 11 additions and 1 deletions

View File

@ -156,7 +156,17 @@ public class MythicMobsHookTest {
* Test method for {@link world.bentobox.bentobox.hooks.MythicMobsHook#spawnMythicMob(world.bentobox.bentobox.blueprints.dataobjects.BlueprintEntity.MythicMobRecord, org.bukkit.Location)}.
*/
@Test
public void testSpawnMythicMob() {
public void testSpawnMythicMobNoPLugin() {
MythicMobRecord mmr = hook.getMythicMob(entity);
assertFalse(hook.spawnMythicMob(mmr, location));
}
/**
* Test method for {@link world.bentobox.bentobox.hooks.MythicMobsHook#spawnMythicMob(world.bentobox.bentobox.blueprints.dataobjects.BlueprintEntity.MythicMobRecord, org.bukkit.Location)}.
*/
@Test
public void testSpawnMythicMobHasPlugin() {
when(mythicMobs.isEnabled()).thenReturn(true);
MythicMobRecord mmr = hook.getMythicMob(entity);
assertTrue(hook.spawnMythicMob(mmr, location));
verify(mm).getMythicMob("GIANT");