Example #1
0
 /**
  * @covers ::isGet
  */
 public function testIsGet()
 {
     $this->assertFalse($this->form->isGet());
     $this->form->removeAttribute('method');
     $this->assertTrue($this->form->isGet());
 }