#1246: Add missing AbstractTestingBase to tests which need them

By: DerFrZocker <derrieple@gmail.com>
This commit is contained in:
CraftBukkit/Spigot 2023-08-25 19:33:11 +10:00
parent 764b9df72a
commit 6fdc83ddd9
3 changed files with 6 additions and 3 deletions

View file

@ -1,10 +1,11 @@
package org.bukkit.craftbukkit.legacy;
import org.bukkit.Material;
import org.bukkit.support.AbstractTestingBase;
import org.junit.Assert;
import org.junit.Test;
public class EvilTest {
public class EvilTest extends AbstractTestingBase {
@Test
public void testFrom() {

View file

@ -5,10 +5,11 @@ import net.minecraft.world.item.Item;
import net.minecraft.world.item.enchantment.EnchantmentSlotType;
import org.bukkit.Material;
import org.bukkit.craftbukkit.util.CraftMagicNumbers;
import org.bukkit.support.AbstractTestingBase;
import org.junit.Assert;
import org.junit.Test;
public class EnchantmentTargetTest {
public class EnchantmentTargetTest extends AbstractTestingBase {
@Test
public void test() {

View file

@ -2,9 +2,10 @@ package org.bukkit.entity;
import net.minecraft.world.entity.vehicle.EntityBoat;
import org.bukkit.craftbukkit.entity.CraftBoat;
import org.bukkit.support.AbstractTestingBase;
import org.junit.Test;
public class BoatTest {
public class BoatTest extends AbstractTestingBase {
@Test
public void testTypes() {