1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace Test\Unit;
- require_once dirname(__DIR__) . '/Setup.php';
- use Test\Setup;
- use Braintree;
- class PayPalAccountTest extends Setup
- {
- public function testGet_givesErrorIfInvalidProperty()
- {
- $this->setExpectedException('PHPUnit_Framework_Error', 'Undefined property on Braintree\PayPalAccount: foo');
- $paypalAccount = Braintree\PayPalAccount::factory([]);
- $paypalAccount->foo;
- }
- public function testIsDefault()
- {
- $paypalAccount = Braintree\PayPalAccount::factory(['default' => true]);
- $this->assertTrue($paypalAccount->isDefault());
- $paypalAccount = Braintree\PayPalAccount::factory(['default' => false]);
- $this->assertFalse($paypalAccount->isDefault());
- }
- public function testErrorsOnFindWithBlankArgument()
- {
- $this->setExpectedException('InvalidArgumentException');
- Braintree\PayPalAccount::find('');
- }
- public function testErrorsOnFindWithWhitespaceArgument()
- {
- $this->setExpectedException('InvalidArgumentException');
- Braintree\PayPalAccount::find(' ');
- }
- public function testErrorsOnFindWithWhitespaceCharacterArgument()
- {
- $this->setExpectedException('InvalidArgumentException');
- Braintree\PayPalAccount::find('\t');
- }
- }
|