You are here

function Braintree_CustomerTest::testFindErrorsOnWhitespaceId in Commerce Braintree 7

File

braintree_php/tests/unit/CustomerTest.php, line 33

Class

Braintree_CustomerTest

Code

function testFindErrorsOnWhitespaceId() {
  $this
    ->setExpectedException('InvalidArgumentException');
  Braintree_Customer::find('\\t');
}