Sign in
android
/
platform
/
dalvik.git
/
refs/heads/eclair-release
/
.
/
dx
/
src
/
junit
/
framework
/
Protectable.java
blob: 8243555a1bd46f80b3645e33b7430b3203f77c06 [
file
] [
edit
]
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
;
}