You are here

function Braintree_TransactionAdvancedSearchTest::test_multipleValueNode_source_allowedValues in Commerce Braintree 7

File

braintree_php/tests/integration/TransactionAdvancedSearchTest.php, line 518

Class

Braintree_TransactionAdvancedSearchTest

Code

function test_multipleValueNode_source_allowedValues() {
  $this
    ->setExpectedException('InvalidArgumentException', 'Invalid argument(s) for source: noSuchSource');
  $collection = Braintree_Transaction::search(array(
    Braintree_TransactionSearch::source()
      ->is('noSuchSource'),
  ));
}