Fixed remaining failing cases to work with JUnit 3.

fix-message-formatting
Danny van Heumen 11 years ago
parent 192b744196
commit 4f0e2d6ff7

@ -37,42 +37,84 @@ public void testConstruction()
public void testConstructionNullIdentifier() public void testConstructionNullIdentifier()
{ {
EasyMock.replay(this.providerMock, this.stackMock); 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) //@Test(expected = IllegalArgumentException.class)
public void testConstructionNullProvider() public void testConstructionNullProvider()
{ {
EasyMock.replay(this.providerMock, this.stackMock); 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) //@Test(expected = IllegalArgumentException.class)
public void testEmptyName() public void testEmptyName()
{ {
EasyMock.replay(this.providerMock, this.stackMock); 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) //@Test(expected = IllegalArgumentException.class)
public void testIllegalNameBadPrefix() public void testIllegalNameBadPrefix()
{ {
EasyMock.replay(this.providerMock, this.stackMock); 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) //@Test(expected = IllegalArgumentException.class)
public void testIllegalNameSpace() public void testIllegalNameSpace()
{ {
EasyMock.replay(this.providerMock, this.stackMock); 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) //@Test(expected = IllegalArgumentException.class)
public void testIllegalNameComma() public void testIllegalNameComma()
{ {
EasyMock.replay(this.providerMock, this.stackMock); 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 //@Test

Loading…
Cancel
Save