Gitiles
Code Review
Sign In
gerrit.witaqua.org
/
frameworks_base
/
60ea45eb67c4da0df306b34faec671fa33b9a8d2
/
.
/
test-base
/
src
/
junit
/
framework
/
Protectable.java
blob: e1432370cfaf2685241c8d6899584554626227ed [
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
;
}