Files
mongo-php-driver/tests/serverApi/serverApi-var_export-001.phpt
T
Andreas Braun 6ffcb1f1dd PHPC-2117: Test on PHP 8.2 (#1340)
* Test on PHP 8.2

* Fix tests relating to dynamic properties

* Fix tests failing due to different __set_state output

* Duplicate clone test without dynamic properties for PHP >= 8.2
2022-08-04 08:53:25 +02:00

44 lines
958 B
PHP

--TEST--
MongoDB\Driver\ServerApi: var_export()
--FILE--
<?php
require_once __DIR__ . '/../utils/basic.inc';
$tests = [
new MongoDB\Driver\ServerApi('1'),
new MongoDB\Driver\ServerApi('1', true),
new MongoDB\Driver\ServerApi('1', null, true),
new MongoDB\Driver\ServerApi('1', false, false),
];
foreach ($tests as $test) {
echo var_export($test, true), "\n";
}
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
%r\\?%rMongoDB\Driver\ServerApi::__set_state(array(
'version' => '1',
'strict' => NULL,
'deprecationErrors' => NULL,
))
%r\\?%rMongoDB\Driver\ServerApi::__set_state(array(
'version' => '1',
'strict' => true,
'deprecationErrors' => NULL,
))
%r\\?%rMongoDB\Driver\ServerApi::__set_state(array(
'version' => '1',
'strict' => NULL,
'deprecationErrors' => true,
))
%r\\?%rMongoDB\Driver\ServerApi::__set_state(array(
'version' => '1',
'strict' => false,
'deprecationErrors' => false,
))
===DONE===