Ejemplo n.º 1
0
 /**
  * @test
  */
 public function getForeignKeys()
 {
     $foreignKeys = $this->databaseConnection->getForeignKeys('users');
     $excepted = array('type_id' => 'types.id', 'status_id' => 'sTaT_useS.ID');
     $this->assertSame($excepted, $foreignKeys);
 }