Beispiel #1
0
 public function testFromTableRows()
 {
     $rows = [['column' => 'attribute value']];
     $expectedRows = [['attribute' => 'attribute value']];
     $result = $this->mapper->fromTableRows($rows);
     $this->assertSame($expectedRows, $result);
 }