/**
  * @return void
  */
 public function testUpdateDocument()
 {
     $docName = 'some_name';
     $condition = 'field1 = 1';
     $this->pdoMysql->expects($this->once())->method('update')->with($docName, [], $condition);
     $this->adapterMysql->updateDocument($docName, [], $condition);
 }