You are here

function Braintree_AddressTest::testFindErrorsOnBlankAddressId in Commerce Braintree 7

File

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

Class

Braintree_AddressTest

Code

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