Example #1
0
 public function testIsFollowingRedirects()
 {
     $client = new TestClient();
     $this->assertTrue($client->isFollowingRedirects(), '->getFollowRedirects() returns default value');
     $client->followRedirects(false);
     $this->assertFalse($client->isFollowingRedirects(), '->getFollowRedirects() returns assigned value');
 }