Added a new test for get[Padded]Slice and renamed testHangingQuote to testUnmatchedQuote.

This commit is contained in:
TomyLobo 2011-09-20 03:41:07 +02:00
parent 67918f171b
commit fa82482823

View File

@ -81,7 +81,7 @@ public class CommandContextTest {
}
@Test
public void testHangingQuote() {
public void testUnmatchedQuote() {
String cmd = "r \"hello goodbye have fun";
try {
new CommandContext(cmd);
@ -131,4 +131,16 @@ public class CommandContextTest {
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");
}
}
}