Example #1
0
 public function testAttributes()
 {
     $this->form->setMethod('test');
     $this->form->setEncType('test');
     $this->form->setAction('test');
     $this->assertEquals($this->form->getAttributes(), array('method' => 'test', 'enctype' => 'test', 'action' => 'test'));
 }