Пример #1
0
 public function testHasGetVar()
 {
     $o = new PopulatedRequest();
     // GET var
     $this->assertTrue($o->hasGetVar('cucu'));
     // 'cucu' => 'pasare','ana' => 'are', 'mere' => '', 'test' => 123
     $this->assertTrue($o->hasGetVar('ana'));
     $this->assertTrue($o->hasGetVar('test'));
 }