/
usr
/
share
/
php
/
tests
/
mongodb
/
tests
/
writeConcern
/
Upload File
HOME
--TEST-- MongoDB\Driver\WriteConcern::getJournal() --FILE-- <?php $tests = array( true, false, 1, 0, null, ); foreach ($tests as $test) { $wc = new MongoDB\Driver\WriteConcern(1, 0, $test); var_dump($wc->getJournal()); } // Test with default value $wc = new MongoDB\Driver\WriteConcern(1, 0); var_dump($wc->getJournal()); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- bool(true) bool(false) bool(true) bool(false) NULL NULL ===DONE===