Moved commands/island/teams to commands/island/team

This commit is contained in:
Florian CUNY 2018-07-18 14:45:14 +02:00
parent fd36b0a9eb
commit 0f61049502
12 changed files with 33 additions and 33 deletions

View File

@ -18,7 +18,7 @@ import us.tastybento.bskyblock.commands.island.IslandSethomeCommand;
import us.tastybento.bskyblock.commands.island.IslandSetnameCommand;
import us.tastybento.bskyblock.commands.island.IslandSettingsCommand;
import us.tastybento.bskyblock.commands.island.IslandUnbanCommand;
import us.tastybento.bskyblock.commands.island.teams.IslandTeamCommand;
import us.tastybento.bskyblock.commands.island.team.IslandTeamCommand;
public class IslandCommand extends CompositeCommand {

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.List;
import java.util.Set;

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.List;
import java.util.UUID;

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.List;
import java.util.UUID;

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.HashSet;
import java.util.List;

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.List;
import java.util.UUID;

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.List;

View File

@ -1,4 +1,4 @@
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import java.util.ArrayList;
import java.util.List;

View File

@ -1,7 +1,7 @@
/**
*
*/
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import static org.junit.Assert.assertFalse;
import static org.mockito.Mockito.mock;
@ -119,7 +119,7 @@ public class IslandTeamInviteCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNoIsland() {
@ -130,7 +130,7 @@ public class IslandTeamInviteCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNotTeamLeader() {
@ -141,7 +141,7 @@ public class IslandTeamInviteCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNoTarget() {
@ -151,7 +151,7 @@ public class IslandTeamInviteCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteUnknownPlayer() {
@ -164,7 +164,7 @@ public class IslandTeamInviteCommandTest {
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteOfflinePlayer() {
@ -179,7 +179,7 @@ public class IslandTeamInviteCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteSamePlayer() {
@ -195,7 +195,7 @@ public class IslandTeamInviteCommandTest {
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamInviteCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteDifferentPlayerInTeam() {

View File

@ -1,7 +1,7 @@
/**
*
*/
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
@ -125,7 +125,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNoTeam() {
@ -136,7 +136,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNotTeamLeader() {
@ -147,7 +147,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNoTarget() {
@ -157,7 +157,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteUnknownPlayer() {
@ -169,7 +169,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteSamePlayer() {
@ -182,7 +182,7 @@ public class IslandTeamKickCommandTest {
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteDifferentPlayerNotInTeam() {
@ -195,7 +195,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNoConfirmation() {
@ -215,7 +215,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteWithConfirmation() {
@ -235,7 +235,7 @@ public class IslandTeamKickCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamKickCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteTestResets() {

View File

@ -1,7 +1,7 @@
/**
*
*/
package us.tastybento.bskyblock.commands.island.teams;
package us.tastybento.bskyblock.commands.island.team;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
@ -106,7 +106,7 @@ public class IslandTeamLeaveCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNoTeam() {
@ -117,7 +117,7 @@ public class IslandTeamLeaveCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteInTeamLeader() {
@ -127,7 +127,7 @@ public class IslandTeamLeaveCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteNoConfirmation() {
@ -144,7 +144,7 @@ public class IslandTeamLeaveCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteWithConfirmation() {
@ -163,7 +163,7 @@ public class IslandTeamLeaveCommandTest {
}
/**
* Test method for {@link us.tastybento.bskyblock.commands.island.teams.IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
* Test method for {@link IslandTeamLeaveCommand#execute(us.tastybento.bskyblock.api.user.User, java.util.List)}.
*/
@Test
public void testExecuteTestResets() {