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