Inheritance: implements Webiny\Component\Security\Authorization\Voters\VoterInterface
 public function testVoteAccessDenied()
 {
     $user = new UserMock();
     $user->populate("test", "test", [], false);
     $voter = new AuthenticationVoter();
     $this->assertSame(AuthenticationVoter::ACCESS_DENIED, $voter->vote($user, []));
 }