public function testGetTokenChecksForRefreshToken()
 {
     $grant = new RefreshToken($this->createClient(), ['client_id' => 'test', 'client_secret' => 'clientSecret']);
     $this->setExpectedException('\\RuntimeException');
     $grant->getToken();
 }