Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
php-8.2.24-202410171016
/
share
/
test
/
mongodb
/
tests
/
readConcern
/
//opt/php-8.2.24-202410171016/share/test/mongodb/tests/readConcern/readconcern-getlevel-001.phpt
--TEST-- MongoDB\Driver\ReadConcern::getLevel() --FILE-- <?php $tests = [ null, MongoDB\Driver\ReadConcern::LOCAL, 'not-yet-supported', ]; foreach ($tests as $test) { $rc = new MongoDB\Driver\ReadConcern($test); var_dump($rc->getLevel()); } ?> ===DONE=== <?php exit(0); ?> --EXPECT-- NULL string(5) "local" string(17) "not-yet-supported" ===DONE===