コード例 #1
0
 /**
  * @return void
  */
 public function testGetDocumentStructure()
 {
     $this->pdoMysql->expects($this->any())->method('describeTable')->with('some_table')->willReturn(['id' => 'int']);
     $this->assertEquals(['id' => 'int'], $this->adapterMysql->getDocumentStructure('some_table'));
 }