function Braintree_TransactionAdvancedSearchTest::test_multipleValueNode_source_allowedValues in Commerce Braintree 7
File
- braintree_php/
tests/ integration/ TransactionAdvancedSearchTest.php, line 518
Class
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'),
));
}