public function setRow(Row $row) { $this->row = $row->getRow(); return $this; }
public function testEmptyConstructor() { $row = new Row(); $this->assertInternalType('array', $row->getRow()); $this->assertCount(0, $row->getRow()); }