friendica/tests/src/BaseObjectTest.php

37 lines
638 B
PHP
Raw Normal View History

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