php-src/ext/date/tests/date_period_set_state2.phpt

19 lines
345 B
PHP

--TEST--
Test that calling DatePeriod::__set_state() directly with missing arguments throws
--FILE--
<?php
try {
DatePeriod::__set_state(
[
"start" => new DateTime,
]
);
} catch (\Error $exception) {
echo $exception->getMessage() . "\n";
}
?>
--EXPECT--
Invalid serialization data for DatePeriod object