Current Path : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/ |
Current File : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/BraintreeTest.php |
<?php require_once realpath(dirname(__FILE__)) . '/../TestHelper.php'; class Braintree_BraintreeTest extends PHPUnit_Framework_TestCase { function testIsset() { $t = Braintree_Transaction::factory(array( 'creditCard' => array('expirationMonth' => '05', 'expirationYear' => '2010', 'bin' => '510510', 'last4' => '5100'), 'customer' => array(), 'billing' => array(), 'descriptor' => array(), 'shipping' => array(), 'subscription' => array('billingPeriodStartDate' => '1983-07-12'), 'statusHistory' => array() )); $this->assertTrue(isset($t->creditCard)); $this->assertFalse(empty($t->creditCard)); } }