Example #1
0
 public function testGetVersion()
 {
     $client = new Client('https://localhost:4010', null, '/v3');
     $this->assertSame('/v3', $client->getVersion());
     $client = new Client('https://localhost:4010', null, null);
     $this->assertSame(null, $client->getVersion());
 }