geforkt von Mirrors/FastAsyncWorldEdit
Added a new test for get[Padded]Slice and renamed testHangingQuote to testUnmatchedQuote.
Dieser Commit ist enthalten in:
Ursprung
67918f171b
Commit
fa82482823
@ -81,7 +81,7 @@ public class CommandContextTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testHangingQuote() {
|
public void testUnmatchedQuote() {
|
||||||
String cmd = "r \"hello goodbye have fun";
|
String cmd = "r \"hello goodbye have fun";
|
||||||
try {
|
try {
|
||||||
new CommandContext(cmd);
|
new CommandContext(cmd);
|
||||||
@ -131,4 +131,16 @@ public class CommandContextTest {
|
|||||||
fail("Error creating CommandContext");
|
fail("Error creating CommandContext");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSlice() {
|
||||||
|
try {
|
||||||
|
CommandContext context = new CommandContext("foo bar baz");
|
||||||
|
assertArrayEquals(new String[] { "foo", "bar", "baz" }, context.getSlice(0));
|
||||||
|
|
||||||
|
} catch (CommandException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
fail("Error creating CommandContext");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren