You are here

function Braintree_SubscriptionTest::testErrorsOnFindWithWhitespaceArgument in Commerce Braintree 7

File

braintree_php/tests/unit/SubscriptionTest.php, line 12

Class

Braintree_SubscriptionTest

Code

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