Example #1
0
 public function testGetPath()
 {
     $client = new Client('https://localhost:4010', null, null, ['/foo/bar']);
     $this->assertSame(['/foo/bar'], $client->getPath());
     $client = new Client('https://localhost:4010', null, null, null);
     $this->assertSame([], $client->getPath());
 }