/
usr
/
share
/
php
/
tests
/
mongodb
/
tests
/
cursor
/
Upload File
HOME
--TEST-- MongoDB\Driver\CursorInterface is implemented by MongoDB\Driver\Cursor --SKIPIF-- <?php require __DIR__ . "/../utils/basic-skipif.inc"; ?> <?php skip_if_not_live(); ?> <?php skip_if_not_clean(); ?> --FILE-- <?php require_once __DIR__ . "/../utils/basic.inc"; $manager = new MongoDB\Driver\Manager(URI); $bulk = new MongoDB\Driver\BulkWrite(); $bulk->insert(array('_id' => 1, 'x' => 1)); $bulk->insert(array('_id' => 2, 'x' => 1)); $manager->executeBulkWrite(NS, $bulk); $cursor = $manager->executeQuery(NS, new MongoDB\Driver\Query(array("x" => 1))); var_dump($cursor instanceof MongoDB\Driver\CursorInterface); ?> ===DONE=== <?php exit(0); ?> --EXPECT-- bool(true) ===DONE===