1234567891011121314151617181920212223242526 |
- <?php
- namespace Test\Unit;
- require_once dirname(__DIR__) . '/Setup.php';
- use Test\Setup;
- use Braintree;
- class TransactionLineItemTest extends Setup
- {
- public function testCREDIT_equalsDeprecatedCREDIT()
- {
- $this->assertEquals(
- Braintree\TransactionLineItem::CREDIT,
- Braintree\Transaction\LineItem::CREDIT
- );
- }
- public function testDEBIT_equalsDeprecatedDEBIT()
- {
- $this->assertEquals(
- Braintree\TransactionLineItem::DEBIT,
- Braintree\Transaction\LineItem::DEBIT
- );
- }
- }
|