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

aQute.junit.runtime.Operation Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.1.0
Show newest version
package aQute.junit.runtime;

/**
 * Represents an operation against a service of type S yielding
 * a result of type R
 * 
 * @author Neil Bartlett
 * @param  The service type
 * @param  The result type
 */
public interface Operation {
	R perform(S service) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy