Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testSaveEmptyKeys PHP Метод

testSaveEmptyKeys() публичный Метод

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