public function testGetDocumentList()
 {
     $this->pdoMysql->expects($this->any())->method('listTables')->willReturn(['table1', 'table2']);
     $this->assertEquals(['table1', 'table2'], $this->adapterMysql->getDocumentList());
 }