You are here

function Braintree_TransactionAdvancedSearchTest::test_multipleValueNode_type_allowedValues in Commerce Braintree 7

File

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

Class

Braintree_TransactionAdvancedSearchTest

Code

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