2018-04-09 21:03:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* BaseObjectTest class.
|
|
|
|
*/
|
|
|
|
|
2019-02-27 11:32:56 +00:00
|
|
|
namespace Friendica\Test\src;
|
2018-04-09 21:03:29 +00:00
|
|
|
|
|
|
|
use Friendica\BaseObject;
|
2019-01-30 19:26:17 +00:00
|
|
|
use Friendica\Test\Util\AppMockTrait;
|
|
|
|
use Friendica\Test\Util\VFSTrait;
|
2018-04-09 19:23:41 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
2018-04-09 21:03:29 +00:00
|
|
|
/**
|
|
|
|
* Tests for the BaseObject class.
|
|
|
|
*/
|
2018-04-09 19:23:41 +00:00
|
|
|
class BaseObjectTest extends TestCase
|
2018-04-09 21:03:29 +00:00
|
|
|
{
|
2019-01-30 19:26:17 +00:00
|
|
|
use VFSTrait;
|
|
|
|
use AppMockTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var BaseObject
|
|
|
|
*/
|
|
|
|
private $baseObject;
|
2018-04-09 21:03:29 +00:00
|
|
|
|
2019-02-05 21:56:57 +00:00
|
|
|
/**
|
|
|
|
* Test the getApp() function without App
|
|
|
|
* @expectedException Friendica\Network\HTTPException\InternalServerErrorException
|
2019-02-07 19:44:03 +00:00
|
|
|
* @runInSeparateProcess
|
|
|
|
* @preserveGlobalState disabled
|
2019-02-05 21:56:57 +00:00
|
|
|
*/
|
|
|
|
public function testGetAppFailed()
|
|
|
|
{
|
2019-05-02 03:20:25 +00:00
|
|
|
BaseObject::getApp();
|
2019-02-05 21:56:57 +00:00
|
|
|
}
|
2018-04-09 21:03:29 +00:00
|
|
|
}
|