Viewing File: /opt/alt/tests/alt-php80-pecl-mongodb_1.18.1-1.el8/tests/readconcern-ctor-001.phpt
--TEST--
MongoDB\Driver\ReadConcern construction
--FILE--
<?php
var_dump(new MongoDB\Driver\ReadConcern());
var_dump(new MongoDB\Driver\ReadConcern(null));
var_dump(new MongoDB\Driver\ReadConcern(MongoDB\Driver\ReadConcern::LOCAL));
var_dump(new MongoDB\Driver\ReadConcern('not-yet-supported'));
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(MongoDB\Driver\ReadConcern)#%d (%d) {
}
object(MongoDB\Driver\ReadConcern)#%d (%d) {
}
object(MongoDB\Driver\ReadConcern)#%d (%d) {
["level"]=>
string(5) "local"
}
object(MongoDB\Driver\ReadConcern)#%d (%d) {
["level"]=>
string(17) "not-yet-supported"
}
===DONE===
Back to Directory
File Manager
<