コード例 #1
0
        public void When_I_use_a_client_with_invalid_creds_Then_it_should_throw_InvalidCredentialsException_async()
        {
            var invalidCardPaymentService = SampleFactory.CreateSampleInvalidCardPaymentService();
            var auth = SampleFactory.CreateSampleCustomAuthorization("noException");

            Assert.ThrowsAsync <Paysafe.Common.InvalidCredentialsException>(async() => await invalidCardPaymentService.AuthorizeAsync(auth));
        }
コード例 #2
0
        public void When_I_send_an_auth_more_than_once_Then_it_should_throw_RequestConflictException_sync()
        {
            var auth = SampleFactory.CreateSampleCustomAuthorization("noException");

            _cardPaymentService.Authorize(auth);
            Assert.Throws <Paysafe.Common.RequestConflictException>(() => _cardPaymentService.Authorize(auth));
        }
コード例 #3
0
        public void When_I_send_an_auth_with_negative_amount_Then_it_should_throw_InvalidRequestException_async()
        {
            var auth = SampleFactory.CreateSampleCustomAuthorization("noException");

            auth.Amount(-1);

            Assert.ThrowsAsync <Paysafe.Common.InvalidRequestException>(async() => await _cardPaymentService.AuthorizeAsync(auth));
        }
コード例 #4
0
        public void When_a_request_is_declined_Then_it_should_throw_RequestDeclinedException__async()
        {
            var auth = SampleFactory.CreateSampleCustomAuthorization("requestDeclined");

            Assert.ThrowsAsync <Paysafe.Common.RequestDeclinedException>(async() => await _cardPaymentService.AuthorizeAsync(auth));
        }
コード例 #5
0
        public void When_an_internal_error_occurs_Then_it_should_throw_ApiException_async()
        {
            var auth = SampleFactory.CreateSampleCustomAuthorization("apiException");

            Assert.ThrowsAsync <Paysafe.Common.ApiException>(async() => await _cardPaymentService.AuthorizeAsync(auth));
        }