diff --git a/src/unit/engine/phutil/testcase/ArcanistPhutilTestCase.php b/src/unit/engine/phutil/testcase/ArcanistPhutilTestCase.php index a5b4f5dd..2895d5c6 100644 --- a/src/unit/engine/phutil/testcase/ArcanistPhutilTestCase.php +++ b/src/unit/engine/phutil/testcase/ArcanistPhutilTestCase.php @@ -113,6 +113,25 @@ abstract class ArcanistPhutilTestCase { /* -( Exception Handling )------------------------------------------------- */ + /** + * This simplest way to assert exceptions are thrown. + * + * @param exception The expected exception. + * @param callable The thing which throws the exception. + * + * @return void + * @task exceptions + */ + final protected function assertException($expected_exception_class, + $callable) { + $this->tryTestCases( + array('assertException' => array()), + array(false), + $callable, + $expected_exception_class + ); + } + /** * Straightforward method for writing unit tests which check if some block of * code throws an exception. For example, this allows you to test the