コード例 #1
0
ファイル: RowTest.php プロジェクト: fuelphp/common
 /**
  * @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());
 }