You are here

function Braintree_CustomerTest::testCreditNoValidate_throwsIfInvalid in Commerce Braintree 7

File

braintree_php/tests/integration/CustomerTest.php, line 907

Class

Braintree_CustomerTest

Code

function testCreditNoValidate_throwsIfInvalid() {
  $customer = Braintree_Customer::createNoValidate(array(
    'creditCard' => array(
      'number' => '5105105105105100',
      'expirationDate' => '05/12',
    ),
  ));
  $creditCard = $customer->creditCards[0];
  $this
    ->setExpectedException('Braintree_Exception_ValidationsFailed');
  Braintree_Customer::creditNoValidate($customer->id, array(
    'amount' => 'invalid',
  ));
}