Sign in
eclipse
/
jdt
/
eclipse.jdt.ui
/
3e5e291a2743969867ef8c9af7ee97ce8b9e6024
/
.
/
org.eclipse.jdt.ui.tests
/
JUnit
/
junit
/
framework
/
Protectable.java
blob: 509ddc20ed55a6af66a8185abe2ddfc3fcda66d4 [
file
] [
log
] [
blame
]
package
junit
.
framework
;
/**
* A <em>Protectable</em> can be run and can throw a Throwable.
*
* @see TestResult
*/
public
interface
Protectable
{
/**
* Run the the following method protected.
*/
public
abstract
void
protect
()
throws
Throwable
;
}