blob: 949f29361f9ce25c4f80cf17d53b2c729edf9477 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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);
}
}
}
?>
|