Adding Client tests

This commit is contained in:
danibrutal
2015-07-03 17:21:24 +02:00
parent 06b46debef
commit a29f2e5134
+5 -4
View File
@@ -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'
);
}
}