public void Should_return_authorized()  // Temporarily fixed to authorized for development
        {
            var service = new SimpleAuthorizationService();

            var result = service.Authorize();

            result.ShouldBe(AuthorizationResult.Authorized);
        }
        public void Should_be_assignable_to_IAuthorizationService()
        {
            var service = new SimpleAuthorizationService();

            service.ShouldBeAssignableTo <IAuthorizationService>();
        }