geforkt von Mirrors/Paper
Fix an issue with the potion test
By: Thinkofdeath <thinkofdeath@spigotmc.org>
Dieser Commit ist enthalten in:
Ursprung
953a90bdd3
Commit
abbe3b7bc6
@ -448,4 +448,4 @@ public class Potion {
|
||||
public int getNameId() {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -6,9 +6,47 @@ import static org.hamcrest.Matchers.is;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
|
||||
public class PotionTest {
|
||||
|
||||
@BeforeClass
|
||||
public static void setup() {
|
||||
PotionEffectType.registerPotionEffectType(new PotionEffectType(19){
|
||||
@Override
|
||||
public double getDurationModifier() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Poison";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInstant() {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
PotionEffectType.registerPotionEffectType(new PotionEffectType(6){
|
||||
@Override
|
||||
public double getDurationModifier() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Heal";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInstant() {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void applyToItemStack() {
|
||||
Potion potion = new Potion(PotionType.POISON);
|
||||
@ -44,22 +82,6 @@ public class PotionTest {
|
||||
|
||||
@Test
|
||||
public void setExtended() {
|
||||
PotionEffectType.registerPotionEffectType(new PotionEffectType(19){
|
||||
@Override
|
||||
public double getDurationModifier() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Poison";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInstant() {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
Potion potion = new Potion(PotionType.POISON);
|
||||
assertFalse(potion.hasExtendedDuration());
|
||||
potion.setHasExtendedDuration(true);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren