function Braintree_TransactionAdvancedSearchTest::testIsNot in Commerce Braintree 7        
                          
                  
                        
File
 
   - braintree_php/tests/integration/TransactionAdvancedSearchTest.php, line 171
Class
  
  - Braintree_TransactionAdvancedSearchTest 
Code
function testIsNot() {
  $transaction = Braintree_Transaction::saleNoValidate(array(
    'amount' => Braintree_Test_TransactionAmounts::$authorize,
    'creditCard' => array(
      'number' => Braintree_Test_CreditCardNumbers::$visa,
      'expirationDate' => '05/2012',
      'cardholderName' => 'tom smith',
    ),
  ));
  $collection = Braintree_Transaction::search(array(
    Braintree_TransactionSearch::id()
      ->is($transaction->id),
    Braintree_TransactionSearch::creditCardCardholderName()
      ->isNot('somebody else'),
  ));
  $this
    ->assertEquals(1, $collection
    ->maximumCount());
  $this
    ->assertEquals($transaction->id, $collection
    ->firstItem()->id);
  $collection = Braintree_Transaction::search(array(
    Braintree_TransactionSearch::id()
      ->is($transaction->id),
    Braintree_TransactionSearch::creditCardCardholderName()
      ->isNot('tom smith'),
  ));
  $this
    ->assertEquals(0, $collection
    ->maximumCount());
}