Browse Source

improve test coverage of multicatch

pull/1899/head
Joe Watkins 10 years ago
parent
commit
5e10735d07
  1. 1
      Zend/tests/try/exceptions.inc
  2. 22
      Zend/tests/try/try_multicatch_006.phpt
  3. 22
      Zend/tests/try/try_multicatch_007.phpt

1
Zend/tests/try/exceptions.inc

@ -3,3 +3,4 @@
class Exception1 extends Exception {}
class Exception2 extends Exception {}
class Exception3 extends Exception {}
class Exception4 extends Exception {}

22
Zend/tests/try/try_multicatch_006.phpt

@ -0,0 +1,22 @@
--TEST--
Catch first exception in the second multicatch
--FILE--
<?php
require_once __DIR__ . '/exceptions.inc';
try {
echo 'TRY' . PHP_EOL;
throw new Exception3;
} catch(Exception1 | Exception2 $e) {
echo get_class($e) . PHP_EOL;
} catch(Exception3 | Exception4 $e) {
echo get_class($e) . PHP_EOL;
} finally {
echo 'FINALLY' . PHP_EOL;
}
?>
--EXPECT--
TRY
Exception3
FINALLY

22
Zend/tests/try/try_multicatch_007.phpt

@ -0,0 +1,22 @@
--TEST--
Catch second exception in the second multicatch
--FILE--
<?php
require_once __DIR__ . '/exceptions.inc';
try {
echo 'TRY' . PHP_EOL;
throw new Exception4;
} catch(Exception1 | Exception2 $e) {
echo get_class($e) . PHP_EOL;
} catch(Exception3 | Exception4 $e) {
echo get_class($e) . PHP_EOL;
} finally {
echo 'FINALLY' . PHP_EOL;
}
?>
--EXPECT--
TRY
Exception4
FINALLY
Loading…
Cancel
Save