コード例 #1
0
 public function testCanGrabGetVars()
 {
     $_GET['TEST'] = 5;
     $this->assertEquals(5, $this->request->getGet('TEST'));
     $this->assertEquals(null, $this->request->getGEt('TESTY'));
 }