mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-24 11:45:31 +01:00
Removed some 'throws IOException' in IslandResetCommandTest
This commit is contained in:
parent
ae23ad913a
commit
607db5b07f
@ -122,10 +122,9 @@ public class IslandResetCommandTest {
|
||||
|
||||
/**
|
||||
* Test method for .
|
||||
* @throws IOException
|
||||
*/
|
||||
@Test
|
||||
public void testNoIsland() throws IOException {
|
||||
public void testNoIsland() {
|
||||
IslandResetCommand irc = new IslandResetCommand(ic);
|
||||
// Test the reset command
|
||||
// Does not have island
|
||||
@ -134,7 +133,7 @@ public class IslandResetCommandTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testNotOwner() throws IOException {
|
||||
public void testNotOwner() {
|
||||
IslandResetCommand irc = new IslandResetCommand(ic);
|
||||
// Now has island, but is not the owner
|
||||
when(im.hasIsland(Mockito.any(), Mockito.eq(uuid))).thenReturn(true);
|
||||
@ -143,7 +142,7 @@ public class IslandResetCommandTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testHasTeam() throws IOException {
|
||||
public void testHasTeam() {
|
||||
IslandResetCommand irc = new IslandResetCommand(ic);
|
||||
// Now has island, but is not the owner
|
||||
when(im.hasIsland(Mockito.any(), Mockito.eq(uuid))).thenReturn(true);
|
||||
@ -154,7 +153,7 @@ public class IslandResetCommandTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testNoResetsLeft() throws IOException {
|
||||
public void testNoResetsLeft() {
|
||||
IslandResetCommand irc = new IslandResetCommand(ic);
|
||||
// Now has island, but is not the owner
|
||||
when(im.hasIsland(Mockito.any(), Mockito.eq(uuid))).thenReturn(true);
|
||||
|
Loading…
Reference in New Issue
Block a user