public function testGettingUserWhenNoLoggedInUserReturnsNull()
 {
     $auth = new Shield($this->auth, $this->container, []);
     $this->assertFalse($auth->check());
     $this->assertNull($auth->user());
 }