Esempio n. 1
0
 public function testSetGetFormAttributes()
 {
     $this->assertEquals('POST', $this->basic_form_handler->getMethod());
     $this->assertEquals(null, $this->basic_form_handler->getAction());
     $this->basic_form_handler->setMethod('GET');
     $this->basic_form_handler->setAction('example_url/something');
     $this->assertEquals('GET', $this->basic_form_handler->getMethod());
     $this->assertEquals('example_url/something', $this->basic_form_handler->getAction());
 }