コード例 #1
0
ファイル: SessionTest.php プロジェクト: lewishealey/confetti
 public function testSetClientId()
 {
     $session = new SpotifyWebAPI\Session($this->clientID, $this->clientSecret, $this->redirectURI);
     $expected = $this->clientID;
     $session->setClientId($expected);
     $this->assertEquals($expected, $session->getClientId());
 }