Skip to content

Instantly share code, notes, and snippets.

@dharkness
Created August 18, 2010 17:44
Show Gist options
  • Save dharkness/535550 to your computer and use it in GitHub Desktop.
Save dharkness/535550 to your computer and use it in GitHub Desktop.
public function runBare() {
self::checkForCatastrophicError();
self::checkForSkipAllTests();
$this->setBaseUp();
try {
parent::runBare();
}
catch (Exception $e) {
// rethrown below
}
$this->tearBaseDown();
if (isset($e)) {
throw $e;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment