/
home
/
obinna
/
html
/
restaurants
/
vendor
/
mongodb
/
mongodb
/
tests
/
Command
/
Upload File
HOME
<?php namespace MongoDB\Tests\Command; use MongoDB\Command\ListCollections; use MongoDB\Exception\InvalidArgumentException; use MongoDB\Tests\TestCase; class ListCollectionsTest extends TestCase { /** * @dataProvider provideInvalidConstructorOptions */ public function testConstructorOptionTypeChecks(array $options) { $this->expectException(InvalidArgumentException::class); new ListCollections($this->getDatabaseName(), $options); } public function provideInvalidConstructorOptions() { $options = []; foreach ($this->getInvalidDocumentValues() as $value) { $options[][] = ['filter' => $value]; } foreach ($this->getInvalidIntegerValues() as $value) { $options[][] = ['maxTimeMS' => $value]; } foreach ($this->getInvalidSessionValues() as $value) { $options[][] = ['session' => $value]; } return $options; } }