public class TestRemoteExceptionCoordinator extends HiveMindTestCase
{
public void testRemoteExceptionEvent()
{
Throwable t = new RuntimeException();
RemoteExceptionEvent ev = new RemoteExceptionEvent(this, t);
assertSame(this, ev.getSource());
assertSame(t, ev.getException());
}