assertSame('', $host->getHostname()); $host->setHostname('host'); $this->assertSame('host', $host->getHostname()); } public function testUri() { $credentials = new Credentials('', ''); $host = new Host('https://vesta', $credentials); $this->assertSame('https://vesta:8083/api/', $host->buildUri()); } public function testPort() { $credentials = new Credentials('', ''); $host = new Host('', $credentials); $this->assertSame(8083, $host->getPort()); $host->setPort(2023); $this->assertSame(2023, $host->getPort()); } public function testCredentials() { $credentials = new Credentials('', ''); $host = new Host('', $credentials); $this->assertSame($credentials, $host->getCredentials()); $newCredentials = new Credentials('', ''); $host->setCredentials($newCredentials); $this->assertNotSame($credentials, $host->getCredentials()); $this->assertSame($newCredentials, $host->getCredentials()); } }