diff options
author | Damian Minkov <damencho@jitsi.org> | 2010-07-27 20:10:07 +0000 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2010-07-27 20:10:07 +0000 |
commit | fc36d2bc9de766c3218cd6487427dbd6c52b7f99 (patch) | |
tree | 8196211259ffc6636f485e91171f716c2cabaabf /test | |
parent | ff6b63415c3d1ed37467bf2cef62a66bdd34c7ca (diff) | |
download | jitsi-fc36d2bc9de766c3218cd6487427dbd6c52b7f99.zip jitsi-fc36d2bc9de766c3218cd6487427dbd6c52b7f99.tar.gz jitsi-fc36d2bc9de766c3218cd6487427dbd6c52b7f99.tar.bz2 |
Fixing role behavior and role change reporting, as previous role info is missing when role change occurs.
Diffstat (limited to 'test')
-rw-r--r-- | test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat2.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat2.java b/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat2.java index 23d70e3..cd763d1 100644 --- a/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat2.java +++ b/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat2.java @@ -378,9 +378,9 @@ public class TestOperationSetMultiUserChat2 // new TestOperationSetMultiUserChat2("testGrantMembership")); suite.addTest(new TestOperationSetMultiUserChat2("testGrantModerator")); - + suite.addTest(new TestOperationSetMultiUserChat2("testRevokeVoice")); - + suite.addTest(new TestOperationSetMultiUserChat2("testGrantVoice")); suite.addTest( @@ -1378,6 +1378,8 @@ public class TestOperationSetMultiUserChat2 public void testGrantModerator() throws OperationFailedException, OperationNotSupportedException { + logger.info("---= Start test for GrantModerator =---"); + String roomName = testRoomBaseName + roomID; ChatRoom roomUser1 = opSetMUC1.findRoom(roomName); assertNotNull("The room can't be retrieved on user1's side", roomUser1); @@ -1442,6 +1444,8 @@ public class TestOperationSetMultiUserChat2 public void testRevokeVoice() throws OperationFailedException, OperationNotSupportedException { + logger.info("---= Start test for RevokeVoice =---"); + String roomName = testRoomBaseName + roomID; ChatRoom roomUser1 = opSetMUC1.findRoom(roomName); assertNotNull("The room can't be retrieved on user1's side", roomUser1); @@ -1510,6 +1514,8 @@ public class TestOperationSetMultiUserChat2 public void testGrantVoice() throws OperationFailedException, OperationNotSupportedException { + logger.info("---= Start test for GrantVoice =---"); + String roomName = testRoomBaseName + roomID; ChatRoom roomUser1 = opSetMUC1.findRoom(roomName); assertNotNull("The room can't be retrieved on user1's side", roomUser1); |