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