public function authenticatingAnUnsupportedTokenThrowsAnException()
{
$someInvalidToken = $this->createMock(TokenInterface::class);
$authenticationProvider = new FileBasedSimpleKeyProvider('myProvider');
$authenticationProvider->authenticate($someInvalidToken);
}