Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testBatchInsertEmptyBatchException PHP 메소드

testBatchInsertEmptyBatchException() 공개 메소드

    public function testBatchInsertEmptyBatchException()
    {
        $this->setExpectedException('MongoException', 'No write ops were included in the batch');
        $documents = [];
        $this->getCollection()->batchInsert($documents, ['w' => 2]);
    }
MongoCollectionTest