Example #1
0
 /**
  * @covers Fuel\Common\Table::addCell
  * @covers Fuel\Common\Table::getCurrentRow
  * @covers Fuel\Common\Table::createRow
  * @group Common
  */
 public function testAddCell()
 {
     $this->object->addCell(new Table\Cell('This is some content'));
     $this->assertEquals(1, count($this->object->getCurrentRow()));
 }