mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2025-01-20 23:31:23 +01:00
Yay for colored messages!
This commit is contained in:
parent
e2d6652ef1
commit
7cdb52e740
@ -71,13 +71,13 @@ public class TestWorldProperties {
|
|||||||
String[] normalArgs = new String[] { "import", "world", "normal" };
|
String[] normalArgs = new String[] { "import", "world", "normal" };
|
||||||
core.onCommand(mockCommandSender, mockCommand, "", normalArgs);
|
core.onCommand(mockCommandSender, mockCommand, "", normalArgs);
|
||||||
verify(mockCommandSender).sendMessage("Starting import of world 'world'...");
|
verify(mockCommandSender).sendMessage("Starting import of world 'world'...");
|
||||||
verify(mockCommandSender).sendMessage("Complete!");
|
verify(mockCommandSender).sendMessage(ChatColor.GREEN + "Complete!");
|
||||||
|
|
||||||
// Import a second world
|
// Import a second world
|
||||||
String[] netherArgs = new String[] { "import", "world_nether", "nether" };
|
String[] netherArgs = new String[] { "import", "world_nether", "nether" };
|
||||||
core.onCommand(mockCommandSender, mockCommand, "", netherArgs);
|
core.onCommand(mockCommandSender, mockCommand, "", netherArgs);
|
||||||
verify(mockCommandSender).sendMessage("Starting import of world 'world_nether'...");
|
verify(mockCommandSender).sendMessage("Starting import of world 'world_nether'...");
|
||||||
verify(mockCommandSender, VerificationModeFactory.times(2)).sendMessage("Complete!");
|
verify(mockCommandSender, VerificationModeFactory.times(2)).sendMessage(ChatColor.GREEN + "Complete!");
|
||||||
|
|
||||||
// ////////////////////////////////////////////////
|
// ////////////////////////////////////////////////
|
||||||
// let's set some world-properties
|
// let's set some world-properties
|
||||||
|
Loading…
Reference in New Issue
Block a user