コード例 #1
0
ファイル: ClientTest.php プロジェクト: ntvis/php-redmine-api
 /**
  * @covers Redmine\Client
  * @test
  */
 public function testGetUrlReturnsValueFromConstructor()
 {
     $client = new Client('http://test.local', 'asdf');
     $this->assertSame('http://test.local', $client->getUrl());
 }