friendica/tests/BaseObjectTest.php

46 Zeilen
757 B
PHP

<?php
/**
* BaseObjectTest class.
*/
namespace Friendica\Test;
use Friendica\App;
use Friendica\BaseObject;
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
{
/**
* Create variables used in tests.
*/
protected function setUp()
{
$this->baseObject = new BaseObject();
}
/**
* Test the getApp() function.
* @return void
*/
public function testGetApp()
{
$this->assertInstanceOf(App::class, $this->baseObject->getApp());
}
/**
* Test the setApp() function.
* @return void
*/
public function testSetApp()
{
$app = new App(__DIR__.'/../');
$this->assertNull($this->baseObject->setApp($app));
$this->assertEquals($app, $this->baseObject->getApp());
}
}