Move TryToComplete from panel Package to tasks package.

This commit is contained in:
BONNe1704 2019-02-19 19:58:06 +02:00
parent f38aee6ed8
commit 7bb2ad09d3
3 changed files with 10 additions and 10 deletions

View File

@ -14,7 +14,7 @@ import world.bentobox.challenges.ChallengesAddon;
import world.bentobox.challenges.ChallengesManager; import world.bentobox.challenges.ChallengesManager;
import world.bentobox.challenges.database.object.Challenge; import world.bentobox.challenges.database.object.Challenge;
import world.bentobox.challenges.panel.CommonGUI; import world.bentobox.challenges.panel.CommonGUI;
import world.bentobox.challenges.panel.TryToComplete; import world.bentobox.challenges.tasks.TryToComplete;
import world.bentobox.challenges.utils.GuiUtils; import world.bentobox.challenges.utils.GuiUtils;
import world.bentobox.challenges.utils.LevelStatus; import world.bentobox.challenges.utils.LevelStatus;

View File

@ -1,7 +1,7 @@
/** /**
* *
*/ */
package world.bentobox.challenges.panel; package world.bentobox.challenges.tasks;
import org.bukkit.GameMode; import org.bukkit.GameMode;

View File

@ -1,7 +1,7 @@
/** /**
* *
*/ */
package world.bentobox.challenges.panel; package world.bentobox.challenges.tasks;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.mock;
@ -58,7 +58,7 @@ public class TryToCompleteTest {
} }
/** /**
* Test method for {@link world.bentobox.challenges.panel.TryToComplete#removeItems(java.util.List)}. * Test method for {@link TryToComplete#removeItems(java.util.List)}.
*/ */
@Test @Test
public void testRemoveItemsSuccess() { public void testRemoveItemsSuccess() {
@ -72,7 +72,7 @@ public class TryToCompleteTest {
} }
/** /**
* Test method for {@link world.bentobox.challenges.panel.TryToComplete#removeItems(java.util.List)}. * Test method for {@link TryToComplete#removeItems(java.util.List)}.
*/ */
@Test @Test
public void testRemoveItemsMax() { public void testRemoveItemsMax() {
@ -86,7 +86,7 @@ public class TryToCompleteTest {
} }
/** /**
* Test method for {@link world.bentobox.challenges.panel.TryToComplete#removeItems(java.util.List)}. * Test method for {@link TryToComplete#removeItems(java.util.List)}.
*/ */
@Test @Test
public void testRemoveItemsZero() { public void testRemoveItemsZero() {
@ -100,7 +100,7 @@ public class TryToCompleteTest {
} }
/** /**
* Test method for {@link world.bentobox.challenges.panel.TryToComplete#removeItems(java.util.List)}. * Test method for {@link TryToComplete#removeItems(java.util.List)}.
*/ */
@Test @Test
public void testRemoveItemsSuccessMultiple() { public void testRemoveItemsSuccessMultiple() {
@ -114,7 +114,7 @@ public class TryToCompleteTest {
} }
/** /**
* Test method for {@link world.bentobox.challenges.panel.TryToComplete#removeItems(java.util.List)}. * Test method for {@link TryToComplete#removeItems(java.util.List)}.
*/ */
@Test @Test
public void testRemoveItemsSuccessMultipleOther() { public void testRemoveItemsSuccessMultipleOther() {
@ -131,7 +131,7 @@ public class TryToCompleteTest {
} }
/** /**
* Test method for {@link world.bentobox.challenges.panel.TryToComplete#removeItems(java.util.List)}. * Test method for {@link TryToComplete#removeItems(java.util.List)}.
*/ */
@Test @Test
public void testRemoveItemsMultipleOtherFail() { public void testRemoveItemsMultipleOtherFail() {
@ -148,7 +148,7 @@ public class TryToCompleteTest {
} }
/** /**
* Test method for {@link world.bentobox.challenges.panel.TryToComplete#removeItems(java.util.List)}. * Test method for {@link TryToComplete#removeItems(java.util.List)}.
*/ */
@Test @Test
public void testRemoveItemsFail() { public void testRemoveItemsFail() {