1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

[CI skip] Refactored unit tests

This commit is contained in:
TheBusyBiscuit 2020-06-12 18:55:09 +02:00
parent 7249a92bad
commit 9b2c378c3a
48 changed files with 79 additions and 74 deletions

View File

@ -22,7 +22,7 @@ public class EnderBackpack extends SimpleSlimefunItem<ItemUseHandler> implements
return e -> {
Player p = e.getPlayer();
p.openInventory(p.getEnderChest());
p.getWorld().playSound(p.getLocation(), Sound.ENTITY_ENDERMAN_TELEPORT, 1, 1);
p.playSound(p.getEyeLocation(), Sound.ENTITY_ENDERMAN_TELEPORT, 1F, 1F);
e.cancel();
};
}

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.mocks;
package io.github.thebusybiscuit.slimefun4.testing;
import static org.mockito.Mockito.when;
@ -20,6 +20,7 @@ import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.implementation.items.VanillaItem;
import io.github.thebusybiscuit.slimefun4.testing.mocks.MockSlimefunItem;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Objects.Category;
@ -38,6 +39,10 @@ public final class TestUtilities {
return inv;
}
public static Category getCategory(Plugin plugin, String name) {
return new Category(new NamespacedKey(plugin, name), new CustomItem(Material.NETHER_STAR, "&4Test Category"));
}
public static SlimefunItem mockSlimefunItem(Plugin plugin, String id, ItemStack item) {
Category category = new Category(new NamespacedKey(plugin, "test"), new CustomItem(Material.EMERALD, "&4Test Category"));

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.annotations;
package io.github.thebusybiscuit.slimefun4.testing.annotations;
import java.lang.reflect.Field;
import java.util.Arrays;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.annotations;
package io.github.thebusybiscuit.slimefun4.testing.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.mocks;
package io.github.thebusybiscuit.slimefun4.testing.mocks;
import me.mrCookieSlime.Slimefun.Objects.handlers.ItemHandler;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.mocks;
package io.github.thebusybiscuit.slimefun4.testing.mocks;
import org.bukkit.inventory.ItemStack;
@ -6,7 +6,7 @@ import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Objects.Category;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;
class MockSlimefunItem extends SlimefunItem {
public class MockSlimefunItem extends SlimefunItem {
public MockSlimefunItem(Category category, ItemStack item, String id) {
super(category, item, id, RecipeType.NULL, new ItemStack[9]);

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests;
package io.github.thebusybiscuit.slimefun4.testing.tests;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.commands;
package io.github.thebusybiscuit.slimefun4.testing.tests.commands;
import java.util.List;
@ -16,7 +16,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerBackpack;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import io.github.thebusybiscuit.slimefun4.utils.PatternUtils;
import io.github.thebusybiscuit.slimefun4.utils.SlimefunUtils;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.commands;
package io.github.thebusybiscuit.slimefun4.testing.tests.commands;
import org.bukkit.entity.Player;
import org.junit.jupiter.api.AfterAll;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.commands;
package io.github.thebusybiscuit.slimefun4.testing.tests.commands;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.commands;
package io.github.thebusybiscuit.slimefun4.testing.tests.commands;
import org.bukkit.NamespacedKey;
import org.bukkit.entity.Player;
@ -11,7 +11,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.core.researching.Research;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestResearchCommand {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.gps;
package io.github.thebusybiscuit.slimefun4.testing.tests.gps;
import org.bukkit.entity.Player;
import org.junit.jupiter.api.AfterAll;
@ -12,7 +12,7 @@ import io.github.thebusybiscuit.slimefun4.api.events.WaypointCreateEvent;
import io.github.thebusybiscuit.slimefun4.api.gps.GPSNetwork;
import io.github.thebusybiscuit.slimefun4.api.gps.Waypoint;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestWaypoints {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.guide;
package io.github.thebusybiscuit.slimefun4.testing.tests.guide;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.guide;
package io.github.thebusybiscuit.slimefun4.testing.tests.guide;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.guide;
package io.github.thebusybiscuit.slimefun4.testing.tests.guide;
import java.util.function.Consumer;
@ -17,7 +17,7 @@ import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.core.guide.GuideHistory;
import io.github.thebusybiscuit.slimefun4.core.guide.SlimefunGuideImplementation;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.Category;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.items;
package io.github.thebusybiscuit.slimefun4.testing.tests.items;
import java.time.LocalDate;
import java.time.Month;
@ -20,7 +20,7 @@ import io.github.thebusybiscuit.slimefun4.core.categories.FlexCategory;
import io.github.thebusybiscuit.slimefun4.core.categories.LockedCategory;
import io.github.thebusybiscuit.slimefun4.core.categories.SeasonalCategory;
import io.github.thebusybiscuit.slimefun4.core.guide.SlimefunGuideLayout;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.Category;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.items;
package io.github.thebusybiscuit.slimefun4.testing.tests.items;
import java.util.Map;
import java.util.Optional;
@ -14,8 +14,8 @@ import org.junit.jupiter.api.Test;
import be.seeseemelk.mockbukkit.MockBukkit;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.api.exceptions.IncompatibleItemHandlerException;
import io.github.thebusybiscuit.slimefun4.mocks.MockItemHandler;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.mocks.MockItemHandler;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;
import me.mrCookieSlime.Slimefun.Objects.handlers.BowShootHandler;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.items;
package io.github.thebusybiscuit.slimefun4.testing.tests.items;
import java.util.Optional;
@ -11,7 +11,7 @@ import org.junit.jupiter.api.Test;
import be.seeseemelk.mockbukkit.MockBukkit;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.api.items.ItemSetting;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.items;
package io.github.thebusybiscuit.slimefun4.testing.tests.items;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;
@ -8,7 +8,7 @@ import org.junit.jupiter.api.Test;
import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.slimefun4.implementation.setup.SlimefunItemSetup;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestItemSetup {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.items;
package io.github.thebusybiscuit.slimefun4.testing.tests.items;
import java.util.Optional;
@ -15,7 +15,7 @@ import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.api.exceptions.IdConflictException;
import io.github.thebusybiscuit.slimefun4.api.items.ItemState;
import io.github.thebusybiscuit.slimefun4.implementation.items.VanillaItem;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.Category;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
@ -33,7 +33,7 @@ import io.github.thebusybiscuit.slimefun4.api.player.PlayerBackpack;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.implementation.items.backpacks.SlimefunBackpack;
import io.github.thebusybiscuit.slimefun4.implementation.listeners.BackpackListener;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Lists.RecipeType;
import me.mrCookieSlime.Slimefun.Objects.Category;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.bukkit.Location;
import org.bukkit.Material;
@ -17,8 +17,8 @@ import org.junit.jupiter.params.ParameterizedTest;
import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import be.seeseemelk.mockbukkit.block.BlockStateMock;
import io.github.thebusybiscuit.slimefun4.annotations.SlimefunItemsSource;
import io.github.thebusybiscuit.slimefun4.implementation.listeners.CargoNodeListener;
import io.github.thebusybiscuit.slimefun4.testing.annotations.SlimefunItemsSource;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestCargoNodeListener {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.bukkit.entity.Player;
import org.junit.jupiter.api.AfterAll;
@ -10,7 +10,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.slimefun4.api.events.WaypointCreateEvent;
import io.github.thebusybiscuit.slimefun4.implementation.listeners.DeathpointListener;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Lists.SlimefunItems;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
@ -18,7 +18,7 @@ import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.implementation.items.VanillaItem;
import io.github.thebusybiscuit.slimefun4.implementation.listeners.IronGolemListener;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.bukkit.Material;
import org.bukkit.World;
@ -20,7 +20,7 @@ import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.api.events.MultiBlockInteractEvent;
import io.github.thebusybiscuit.slimefun4.core.multiblocks.MultiBlock;
import io.github.thebusybiscuit.slimefun4.implementation.listeners.MultiBlockListener;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.bukkit.Location;
import org.bukkit.Material;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerKickEvent;
@ -12,7 +12,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.implementation.listeners.PlayerProfileListener;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestPlayerProfileListener {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.bukkit.Material;
import org.bukkit.event.entity.EntityDeathEvent;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.listeners;
package io.github.thebusybiscuit.slimefun4.testing.tests.listeners;
import org.apache.commons.lang.mutable.MutableObject;
import org.bukkit.Material;
@ -34,7 +34,7 @@ import io.github.thebusybiscuit.slimefun4.core.guide.SlimefunGuide;
import io.github.thebusybiscuit.slimefun4.core.guide.SlimefunGuideLayout;
import io.github.thebusybiscuit.slimefun4.implementation.items.VanillaItem;
import io.github.thebusybiscuit.slimefun4.implementation.listeners.VanillaMachinesListener;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.multiblocks;
package io.github.thebusybiscuit.slimefun4.testing.tests.multiblocks;
import org.bukkit.Material;
import org.bukkit.block.BlockFace;
@ -11,7 +11,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.core.multiblocks.MultiBlock;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.networks;
package io.github.thebusybiscuit.slimefun4.testing.tests.networks;
import java.util.HashMap;
import java.util.Map;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.profiles;
package io.github.thebusybiscuit.slimefun4.testing.tests.profiles;
import org.bukkit.Material;
import org.bukkit.NamespacedKey;
@ -14,7 +14,7 @@ import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.core.guide.GuideHistory;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.Category;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.profiles;
package io.github.thebusybiscuit.slimefun4.testing.tests.profiles;
import java.util.Optional;
@ -14,7 +14,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerBackpack;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestPlayerBackpacks {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.profiles;
package io.github.thebusybiscuit.slimefun4.testing.tests.profiles;
import java.util.Iterator;
import java.util.Optional;
@ -15,7 +15,7 @@ import be.seeseemelk.mockbukkit.ServerMock;
import be.seeseemelk.mockbukkit.entity.OfflinePlayerMock;
import io.github.thebusybiscuit.slimefun4.api.items.HashedArmorpiece;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestPlayerProfile {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.researches;
package io.github.thebusybiscuit.slimefun4.testing.tests.researches;
import java.util.Arrays;
@ -13,7 +13,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.slimefun4.api.player.PlayerProfile;
import io.github.thebusybiscuit.slimefun4.core.researching.Research;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
public class TestProfileResearches {

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.researches;
package io.github.thebusybiscuit.slimefun4.testing.tests.researches;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.researches;
package io.github.thebusybiscuit.slimefun4.testing.tests.researches;
import java.util.Optional;
import java.util.concurrent.CountDownLatch;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.researches;
package io.github.thebusybiscuit.slimefun4.testing.tests.researches;
import java.util.Optional;
@ -15,7 +15,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.core.researching.Research;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.services;
package io.github.thebusybiscuit.slimefun4.testing.tests.services;
import org.bukkit.Material;
import org.bukkit.NamespacedKey;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.services;
package io.github.thebusybiscuit.slimefun4.testing.tests.services;
import java.util.Optional;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.services;
package io.github.thebusybiscuit.slimefun4.testing.tests.services;
import java.util.Arrays;
import java.util.Optional;
@ -14,7 +14,7 @@ import be.seeseemelk.mockbukkit.MockBukkit;
import be.seeseemelk.mockbukkit.ServerMock;
import io.github.thebusybiscuit.cscorelib2.item.CustomItem;
import io.github.thebusybiscuit.slimefun4.core.services.PermissionsService;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.services;
package io.github.thebusybiscuit.slimefun4.testing.tests.services;
import java.util.Optional;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.services;
package io.github.thebusybiscuit.slimefun4.testing.tests.services;
import java.io.File;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.services;
package io.github.thebusybiscuit.slimefun4.testing.tests.services;
import java.util.Arrays;
@ -12,7 +12,7 @@ import org.junit.jupiter.api.Test;
import be.seeseemelk.mockbukkit.MockBukkit;
import io.github.thebusybiscuit.cscorelib2.config.Config;
import io.github.thebusybiscuit.slimefun4.core.services.CustomTextureService;
import io.github.thebusybiscuit.slimefun4.mocks.TestUtilities;
import io.github.thebusybiscuit.slimefun4.testing.TestUtilities;
import me.mrCookieSlime.Slimefun.SlimefunPlugin;
import me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.utils;
package io.github.thebusybiscuit.slimefun4.testing.tests.utils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.utils;
package io.github.thebusybiscuit.slimefun4.testing.tests.utils;
import org.bukkit.Material;
import org.bukkit.inventory.ItemStack;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.utils;
package io.github.thebusybiscuit.slimefun4.testing.tests.utils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

View File

@ -1,4 +1,4 @@
package io.github.thebusybiscuit.slimefun4.tests.utils;
package io.github.thebusybiscuit.slimefun4.testing.tests.utils;
import org.bukkit.Material;
import org.bukkit.NamespacedKey;