Ejemplo n.º 1
0
 /**
  * @test
  */
 public function getAsArray()
 {
     $row = new Tx_PtExtlist_Domain_Model_List_Row();
     $row->createAndAddCell('testContent1', 'col1');
     $row->createAndAddCell('testContent2', 'col2');
     $row->addSpecialValue('key', 'value');
     $actual = $row->getAsArray();
     $this->assertEquals($this->dataArray, $actual);
 }