Example #1
0
 /**
  * @covers Fuel\Common\Table::setAttributes
  * @covers Fuel\Common\Table::getAttributes
  * @group Common
  */
 public function testSetGetAttributes()
 {
     $attributes = array('class' => 'table', 'id' => 'test');
     $this->object->setAttributes($attributes);
     $this->assertEquals($attributes, $this->object->getAttributes());
 }