public function testSetLogConfigEnable() { $client = new Client(array('log' => true)); $this->assertTrue($client->getConfig('log')); }
public function testSetLogConfigEnable1() { $client = new Client(); $client->setLogger(new Log()); $this->assertFalse($client->getConfig('log')); }