de.team33.patterns.testing.titan.Operation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testing-titan Show documentation
Show all versions of testing-titan Show documentation
Provides classes for testing purpose
The newest version!
package de.team33.patterns.testing.titan;
@Deprecated
@FunctionalInterface
@SuppressWarnings("ProhibitedExceptionDeclared")
public interface Operation {
/**
* Performs this operation.
*
* @param context The {@link Context} of this execution.
* @return The result as specified by this operation.
* @throws Exception If caused during the operation.
*/
R operate(Context context) throws Exception;
}