aQute.junit.TestReporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.tester Show documentation
Show all versions of biz.aQute.tester Show documentation
A bnd tester. If this bundle is used as the tester (previously aQute.junit) then it will add itself to the -runbundles at the end. At startup, this bundle will then run the tests. This bundle does NOT contain JUnit itself. It will import JUnit just like any other bundle.
package aQute.junit;
import java.util.List;
import org.osgi.framework.Bundle;
import junit.framework.Test;
import junit.framework.TestListener;
public interface TestReporter extends TestListener {
void setup(Bundle framework, Bundle targetBundle);
void begin(List tests, int realcount);
void aborted();
void end();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy