1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00

The last of the 2009 testfest tests

This commit is contained in:
Zoe Slattery
2009-08-30 18:18:50 +00:00
parent ceb607af13
commit 4cc35aeaaf
12 changed files with 475 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
--TEST--
ArrayObject: test that you cannot unserialize a empty string
--CREDITS--
Havard Eide <nucleuz@gmail.com>
#PHPTestFest2009 Norway 2009-06-09 \o/
--FILE--
<?php
$a = new ArrayObject(array());
$a->unserialize("");
?>
--EXPECTF--
Fatal error: Uncaught exception 'UnexpectedValueException' with message 'Empty serialized string cannot be empty' in %s.php:%d
Stack trace:
#0 %s(%d): ArrayObject->unserialize('')
#1 {main}
thrown in %s.php on line %d