blob: c9a37783c3901514cc605638409f946d619caa1e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.core.tests.junit.extension;
import java.util.Enumeration;
import java.util.Vector;
import junit.framework.AssertionFailedError;
import junit.framework.Test;
import junit.framework.TestFailure;
public class TestResult extends junit.framework.TestResult {
TestCase currentTest;
/**
* TestResult constructor comment.
*/
public TestResult() {
super();
}
/**
* Adds an error to the list of errors. The passed in exception
* caused the error.
*/
public synchronized void addError(Test test, Throwable t) {
TestFailure testFailure= new TestFailure(test, t);
fErrors.add(testFailure);
for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
((TestListener)e.nextElement()).addError(test, testFailure);
}
}
/**
* Adds a failure to the list of failures. The passed in exception
* caused the failure.
*/
public synchronized void addFailure(Test test, AssertionFailedError t) {
TestFailure testFailure= new TestFailure(test, t);
fFailures.add(testFailure);
for (Enumeration e= cloneListeners().elements(); e.hasMoreElements(); ) {
((TestListener)e.nextElement()).addFailure(test, testFailure);
}
}
/**
* Returns a copy of the listeners.
*/
private synchronized Vector cloneListeners() {
return new Vector(fListeners);
}
protected void run(final TestCase test) {
this.currentTest = test;
super.run(test);
this.currentTest = null;
}
public synchronized void stop() {
super.stop();
if (this.currentTest != null && this.currentTest instanceof StopableTestCase) {
((StopableTestCase)this.currentTest).stop();
}
}
}