Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testInsertEmptyArray PHP Method

testInsertEmptyArray() public method

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