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