friendica/tests/src/BaseObjectTest.php

51 lines
933 B
PHP
Raw Normal View History

<?php
/**
* BaseObjectTest class.
*/
2019-02-27 06:32:56 -05:00
namespace Friendica\Test\src;
use Friendica\BaseObject;
use Friendica\Test\Util\AppMockTrait;
use Friendica\Test\Util\VFSTrait;
2018-04-09 15:23:41 -04:00
use PHPUnit\Framework\TestCase;
/**
* Tests for the BaseObject class.
*/
2018-04-09 15:23:41 -04:00
class BaseObjectTest extends TestCase
{
use VFSTrait;
use AppMockTrait;
/**
* @var BaseObject
*/
private $baseObject;
/**
* Test the setApp() and getApp() function.
* @return void
*/
public function testGetSetApp()
{
$baseObject = new BaseObject();
2019-02-05 16:56:57 -05:00
$this->setUpVfsDir();
2019-02-17 15:41:45 -05:00
$this->mockApp($this->root);
2019-02-05 16:56:57 -05:00
2019-05-01 23:20:25 -04:00
$baseObject->setApp($this->app);
$this->assertEquals($this->app, $baseObject->getApp());
}
2019-02-05 16:56:57 -05:00
/**
* Test the getApp() function without App
* @expectedException Friendica\Network\HTTPException\InternalServerErrorException
* @runInSeparateProcess
* @preserveGlobalState disabled
2019-02-05 16:56:57 -05:00
*/
public function testGetAppFailed()
{
2019-05-01 23:20:25 -04:00
BaseObject::getApp();
2019-02-05 16:56:57 -05:00
}
}