You are here

function Braintree_AddressTest::testFindErrorsOnBlankCustomerId in Commerce Braintree 7

File

braintree_php/tests/unit/AddressTest.php, line 51

Class

Braintree_AddressTest

Code

function testFindErrorsOnBlankCustomerId() {
  $this
    ->setExpectedException('InvalidArgumentException');
  Braintree_Address::find('', '123');
}