friendica/tests/src/BaseObjectTest.php

37 lines
638 B
PHP
Raw Normal View History

<?php
/**
* BaseObjectTest class.
*/
2019-02-27 11:32:56 +00:00
namespace Friendica\Test\src;
use Friendica\BaseObject;
use Friendica\Test\Util\AppMockTrait;
use Friendica\Test\Util\VFSTrait;
2018-04-09 19:23:41 +00:00
use PHPUnit\Framework\TestCase;
/**
* Tests for the BaseObject class.
*/
2018-04-09 19:23:41 +00:00
class BaseObjectTest extends TestCase
{
use VFSTrait;
use AppMockTrait;
/**
* @var BaseObject
*/
private $baseObject;
2019-02-05 21:56:57 +00:00
/**
* Test the getApp() function without App
* @expectedException Friendica\Network\HTTPException\InternalServerErrorException
* @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
}
}