Ejemplo n.º 1
0
 /**
  * @covers Fuel\Common\Table\Row::setType
  * @covers Fuel\Common\Table\Row::getType
  * @group Common
  */
 public function testSetType()
 {
     $this->object->setType(EnumRowType::Footer);
     $this->assertEquals(EnumRowType::Footer, $this->object->getType());
 }