blob: a597a7b8e427af48ff64c1f50832d271041c4d7f [file] [log] [blame] [raw]
package net.glowstone.entity.passive;
import static org.junit.Assert.assertEquals;
import java.util.EnumSet;
import org.bukkit.Material;
import org.junit.Test;
public class GlowOcelotTest extends GlowTameableTest<GlowOcelot> {
public GlowOcelotTest() {
super(GlowOcelot::new);
}
@Test
@Override
public void testGetBreedingFoods() {
assertEquals(EnumSet.of(Material.SALMON), entity.getBreedingFoods());
}
}