All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aQute.tester.bundle.engine.BundleEngineDescriptor Maven / Gradle / Ivy

Go to download

A bnd tester using JUnit Platform. Like biz.aQute.tester, this bundle will add itself to the -runbundles at the end. At startup, this bundle will then look for TestEngine implementations among the loaded bundles and use them to execute the tests. This bundle does NOT contain the necessary TestEngine implementations for JUnit 3, 4 or 5 - it will import them just like any other bundle.

There is a newer version: 7.1.0
Show newest version
package aQute.tester.bundle.engine;

import org.junit.platform.engine.UniqueId;
import org.junit.platform.engine.support.descriptor.EngineDescriptor;

public class BundleEngineDescriptor extends EngineDescriptor {
	public BundleEngineDescriptor(UniqueId uniqueId) {
		super(uniqueId, "Bnd JUnit Platform Bundle Engine");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy