Example #1
0
 public function testCanSetStateful()
 {
     $client = new Client($this->makeDummyParams());
     $current = $client->isStateful();
     $this->assertTrue($current);
     $client->setStateful(false);
     $current = $client->isStateful();
     $this->assertFalse($current);
 }