예제 #1
0
 /**
  * @covers Fuel\Common\Table::setCurrentRowAttributes
  * @covers Fuel\Common\Table::getCurrentRow
  * @covers Fuel\Common\Table::createRow
  * @group Common
  */
 public function testSetRowAttributes()
 {
     $attributes = array('name' => 'test', 'id' => 'foobar');
     $this->object->setCurrentRowAttributes($attributes);
     $this->assertEquals($attributes, $this->object->getCurrentRow()->getAttributes());
 }