improve test coverage of multicatch

This commit is contained in:
Joe Watkins 2016-05-02 18:48:50 +01:00
parent eb72b0ee06
commit 5e10735d07
3 changed files with 45 additions and 0 deletions

View file

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

View file

@ -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

View file

@ -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