Preview: PayPalAccountTest.php
Size: 1.32 KB
/home/godevadmin/www/admin/braintree/final/braintree/tests/unit/PayPalAccountTest.php
<?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');
}
}
Directory Contents
Dirs: 2 × Files: 35