Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
212
/
root
/
opt
/
php-7.2
/
share
/
test
/
mongodb
/
tests
/
writeConcern
/
//proc/212/root/opt/php-7.2/share/test/mongodb/tests/writeConcern/writeconcern-getwtimeout-001.phpt
--TEST-- MongoDB\Driver\WriteConcern::getWtimeout() --FILE-- <?php $tests = array( 0, 1, ); foreach ($tests as $test) { $wc = new MongoDB\Driver\WriteConcern(1, $test); var_dump($wc->getWtimeout()); } // Test with default value $wc = new MongoDB\Driver\WriteConcern(1); var_dump($wc->getWtimeout()); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- int(0) int(1) int(0) ===DONE===