Ejemplo n.º 1
0
 /**
  * @test
  */
 public function setByArray()
 {
     $row = new Tx_PtExtlist_Domain_Model_List_Row();
     $row->setByArray($this->dataArray);
     $this->assertEquals(2, $row->count());
     $this->assertEquals('testContent1', $row->getCell('col1')->getValue());
     $this->assertEquals('testContent2', $row->getCell('col2')->getValue());
     $this->assertEquals(array('key' => 'value'), $row->getSpecialValues());
 }