diff --git a/tests/unit/ClientTest.php b/tests/unit/ClientTest.php index 918d60df69..eee382698e 100644 --- a/tests/unit/ClientTest.php +++ b/tests/unit/ClientTest.php @@ -9,12 +9,13 @@ class ClientTest extends \PHPUnit_Framework_TestCase /** @var Client $client */ protected $client = null; - - + public function testBaseURl() { - $this->assertTrue( - true + $client = new Client('localhost', 8086); + + $this->assertEquals( + $client->getBaseURI(), 'http://localhost:8086' ); } } \ No newline at end of file