friendica/tests/src/BaseObjectTest.php

51 lines
933 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;
/**
* Test the setApp() and getApp() function.
* @return void
*/
public function testGetSetApp()
{
$baseObject = new BaseObject();
2019-02-05 21:56:57 +00:00
$this->setUpVfsDir();
2019-02-17 20:41:45 +00:00
$this->mockApp($this->root);
2019-02-05 21:56:57 +00:00
2019-05-02 03:20:25 +00:00
$baseObject->setApp($this->app);
$this->assertEquals($this->app, $baseObject->getApp());
}
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
}
}