Пример #1
0
 public function testHasGetVarsAfterUnset()
 {
     $o = new PopulatedRequest();
     $o->setGetVars(null);
     $this->assertFalse($o->hasGetVars());
     $o->setGetVars(array('ana' => 'mere'));
     $this->assertTrue($o->hasGetVars());
 }