Exemple #1
0
 public function testRestart()
 {
     $client = new TestClient();
     $client->request('GET', 'http://www.example.com/foo/foobar');
     $client->restart();
     $this->assertTrue($client->getHistory()->isEmpty(), '->restart() clears the history');
     $this->assertEquals(array(), $client->getCookieJar()->all(), '->restart() clears the cookies');
 }