php-bitpay-client/tests/Bitpay/ApplicationTest.php
2014-09-29 09:16:06 -04:00

71 lines
1.6 KiB
PHP

<?php
/**
* @license Copyright 2011-2014 BitPay Inc., MIT License
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
*/
namespace Bitpay;
class ApplicationTest extends \PHPUnit_Framework_TestCase
{
public function testGetUsers()
{
$application = new Application();
$this->assertNotNull($application);
$this->assertInternalType('array', $application->getUsers());
$this->assertEmpty($application->getUsers());
}
/**
* @depends testGetUsers
*/
public function testAddUser()
{
$application = new Application();
$this->assertNotNull($application);
$application->addUser($this->getMockUser());
$this->assertInternalType('array', $application->getUsers());
$this->assertCount(1, $application->getUsers());
}
public function testGetOrgs()
{
$application = new Application();
$this->assertNotNull($application);
$this->assertInternalType('array', $application->getOrgs());
$this->assertEmpty($application->getOrgs());
}
/**
* @depends testGetOrgs
*/
public function testAddOrg()
{
$application = new Application();
$this->assertNotNull($application);
$application->addOrg($this->getMockOrg());
$this->assertInternalType('array', $application->getOrgs());
$this->assertCount(1, $application->getOrgs());
}
private function getMockUser()
{
return $this->getMock('Bitpay\UserInterface');
}
private function getMockOrg()
{
return $this->getMock('Bitpay\OrgInterface');
}
}