summaryrefslogtreecommitdiff
path: root/tests/test_tools/simpletest/exceptions.php
diff options
context:
space:
mode:
authorxue <>2006-07-16 01:50:23 +0000
committerxue <>2006-07-16 01:50:23 +0000
commitaf68030fcf0c266300feb2c100149ecadef7d364 (patch)
tree76b7c8ad5d8227870b9ef10c3e7b92a36336b320 /tests/test_tools/simpletest/exceptions.php
parent4b78404c20490a615459267426ce9e6737bf4485 (diff)
Merge from 3.0 branch till 1264.
Diffstat (limited to 'tests/test_tools/simpletest/exceptions.php')
-rw-r--r--tests/test_tools/simpletest/exceptions.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/test_tools/simpletest/exceptions.php b/tests/test_tools/simpletest/exceptions.php
new file mode 100644
index 00000000..949f2936
--- /dev/null
+++ b/tests/test_tools/simpletest/exceptions.php
@@ -0,0 +1,46 @@
+<?php
+ /**
+ * base include file for SimpleTest
+ * @package SimpleTest
+ * @subpackage UnitTester
+ * @version $Id: exceptions.php,v 1.1 2006/02/06 06:05:18 lastcraft Exp $
+ */
+
+ /**#@+
+ * Includes SimpleTest files and defined the root constant
+ * for dependent libraries.
+ */
+ require_once(dirname(__FILE__) . '/invoker.php');
+
+ /**
+ * Extension that traps exceptions and turns them into
+ * an error message.
+ * @package SimpleTest
+ * @subpackage UnitTester
+ */
+ class SimpleExceptionTrappingInvoker extends SimpleInvokerDecorator {
+
+ /**
+ * Stores the invoker to be wrapped.
+ * @param SimpleInvoker $invoker Test method runner.
+ */
+ function SimpleExceptionTrappingInvoker($invoker) {
+ $this->SimpleInvokerDecorator($invoker);
+ }
+
+ /**
+ * Invokes a test method and dispatches any
+ * untrapped errors.
+ * @param string $method Test method to call.
+ * @access public
+ */
+ function invoke($method) {
+ try {
+ parent::invoke($method);
+ } catch (Exception $exception) {
+ $test_case = $this->getTestCase();
+ $test_case->exception($exception);
+ }
+ }
+ }
+?> \ No newline at end of file