issue: 270510, fixed toString and added test harness

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@48 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2009-03-30 23:56:17 +00:00
parent ba703a6094
commit 1c02a6168c
2 changed files with 128 additions and 2 deletions

View File

@ -136,9 +136,9 @@ public class MultiException extends Exception
public String toString()
{
if (LazyList.size(nested)>0)
return "org.eclipse.util.MultiException"+
return MultiException.class.getSimpleName()+
LazyList.getList(nested);
return "org.eclipse.util.MultiException[]";
return MultiException.class.getSimpleName()+"[]";
}
/* ------------------------------------------------------------ */

View File

@ -0,0 +1,126 @@
package org.eclipse.jetty.util;
import java.io.IOException;
import junit.framework.TestCase;
public class MultiExceptionTest extends TestCase
{
public void testEmpty() throws Exception
{
MultiException me = new MultiException();
assertEquals(0,me.size());
me.ifExceptionThrow();
me.ifExceptionThrowMulti();
me.ifExceptionThrowRuntime();
}
public void testOne() throws Exception
{
MultiException me = new MultiException();
IOException io = new IOException("one");
me.add(io);
assertEquals(1,me.size());
try
{
me.ifExceptionThrow();
assertTrue(false);
}
catch(IOException e)
{
assertTrue(e==io);
}
try
{
me.ifExceptionThrowMulti();
assertTrue(false);
}
catch(MultiException e)
{
assertTrue(e==me);
}
try
{
me.ifExceptionThrowRuntime();
assertTrue(false);
}
catch(RuntimeException e)
{
assertTrue(e.getCause()==io);
}
me = new MultiException();
RuntimeException run = new RuntimeException("one");
me.add(run);
try
{
me.ifExceptionThrowRuntime();
assertTrue(false);
}
catch(RuntimeException e)
{
assertTrue(run==e);
}
}
public void testTwo() throws Exception
{
MultiException me = new MultiException();
IOException io = new IOException("one");
RuntimeException run = new RuntimeException("one");
me.add(io);
me.add(run);
assertEquals(2,me.size());
try
{
me.ifExceptionThrow();
assertTrue(false);
}
catch(MultiException e)
{
assertTrue(e==me);
}
try
{
me.ifExceptionThrowMulti();
assertTrue(false);
}
catch(MultiException e)
{
assertTrue(e==me);
}
try
{
me.ifExceptionThrowRuntime();
assertTrue(false);
}
catch(RuntimeException e)
{
assertTrue(e.getCause()==me);
}
me = new MultiException();
me.add(run);
me.add(run);
try
{
me.ifExceptionThrowRuntime();
assertTrue(false);
}
catch(RuntimeException e)
{
assertTrue(e.getCause()==me);
}
}
}