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

testInsertEmptyArray() 공개 메소드

    public function testInsertEmptyArray()
    {
        $document = [];
        $this->getCollection()->insert($document);
        $this->assertSame(1, $this->getCollection()->count());
    }
MongoCollectionTest