Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testInsertEmptyObject PHP Méthode

testInsertEmptyObject() public méthode

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