/**
  * @expectedException \OC\Authentication\Exceptions\PasswordlessTokenException
  */
 public function testGetPasswordPasswordLessToken()
 {
     $token = 'token1234';
     $tk = new DefaultToken();
     $tk->setPassword(null);
     $this->tokenProvider->getPassword($tk, $token);
 }