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