_table = $rtf->addSection()->addTable(); } /** * tests getCellByIndex * @return void */ public function testGetCellByIndex() { $this->_table->addRow(5); $row = $this->_table->getRow(1); $this->assertType('PHPRtfLite_Table_Cell', $row->getCellByIndex(5)); } }