Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Project
/
android_frameworks_base
/
2754191ac4dbc8633106bd64c98806006a2a5113
/
.
/
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
;
}