Ejemplo n.º 1
0
 public function testSetClientSecret()
 {
     $session = new SpotifyWebAPI\Session($this->clientID, $this->clientSecret, $this->redirectURI);
     $expected = $this->clientSecret;
     $session->setClientSecret($expected);
     $this->assertEquals($expected, $session->getClientSecret());
 }