diff options
Diffstat (limited to 'test/net/java')
-rw-r--r-- | test/net/java/sip/communicator/impl/protocol/irc/ChatRoomIrcImplTest.java | 54 |
1 files changed, 48 insertions, 6 deletions
diff --git a/test/net/java/sip/communicator/impl/protocol/irc/ChatRoomIrcImplTest.java b/test/net/java/sip/communicator/impl/protocol/irc/ChatRoomIrcImplTest.java index 077e5a4..c745a98 100644 --- a/test/net/java/sip/communicator/impl/protocol/irc/ChatRoomIrcImplTest.java +++ b/test/net/java/sip/communicator/impl/protocol/irc/ChatRoomIrcImplTest.java @@ -37,42 +37,84 @@ public class ChatRoomIrcImplTest public void testConstructionNullIdentifier() { EasyMock.replay(this.providerMock, this.stackMock); - new ChatRoomIrcImpl(null, this.providerMock); + try + { + new ChatRoomIrcImpl(null, this.providerMock); + fail("Should have failed with IAE."); + } + catch (IllegalArgumentException e) + { + } } //@Test(expected = IllegalArgumentException.class) public void testConstructionNullProvider() { EasyMock.replay(this.providerMock, this.stackMock); - new ChatRoomIrcImpl("#test", null); + try + { + new ChatRoomIrcImpl("#test", null); + fail("Should have failed with IAE."); + } + catch (IllegalArgumentException e) + { + } } //@Test(expected = IllegalArgumentException.class) public void testEmptyName() { EasyMock.replay(this.providerMock, this.stackMock); - new ChatRoomIrcImpl("", this.providerMock); + try + { + new ChatRoomIrcImpl("", this.providerMock); + fail("Should have failed with IAE."); + } + catch (IllegalArgumentException e) + { + } } //@Test(expected = IllegalArgumentException.class) public void testIllegalNameBadPrefix() { EasyMock.replay(this.providerMock, this.stackMock); - new ChatRoomIrcImpl("!test", this.providerMock); + try + { + new ChatRoomIrcImpl("!test", this.providerMock); + fail("Should have failed with IAE."); + } + catch (IllegalArgumentException e) + { + } } //@Test(expected = IllegalArgumentException.class) public void testIllegalNameSpace() { EasyMock.replay(this.providerMock, this.stackMock); - new ChatRoomIrcImpl("#test test", this.providerMock); + try + { + new ChatRoomIrcImpl("#test test", this.providerMock); + fail("Should have failed with IAE."); + } + catch (IllegalArgumentException e) + { + } } //@Test(expected = IllegalArgumentException.class) public void testIllegalNameComma() { EasyMock.replay(this.providerMock, this.stackMock); - new ChatRoomIrcImpl("#test,test", this.providerMock); + try + { + new ChatRoomIrcImpl("#test,test", this.providerMock); + fail("Should have failed with IAE."); + } + catch (IllegalArgumentException e) + { + } } //@Test |