Exemple #1
0
 /**
  * @covers ByJG\Util\WebRequest::getFollowLocation
  */
 public function testGetFollowLocation()
 {
     $this->object->setFollowLocation(true);
     $this->assertTrue($this->object->getFollowLocation());
     $this->object->setFollowLocation(false);
     $this->assertFalse($this->object->getFollowLocation());
 }