mirror of
https://github.com/friendica/friendica
synced 2025-04-26 22:30:18 +00:00
Remove old tests
Add tests for the BaseObject class
This commit is contained in:
parent
2c7514d03c
commit
9a40f17257
8 changed files with 47 additions and 899 deletions
45
tests/BaseObjectTest.php
Normal file
45
tests/BaseObjectTest.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
/**
|
||||
* BaseObjectTest class.
|
||||
*/
|
||||
|
||||
namespace Friendica\Test;
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\BaseObject;
|
||||
use PHPUnit_Framework_TestCase;
|
||||
|
||||
/**
|
||||
* Tests for the BaseObject class.
|
||||
*/
|
||||
class BaseObjectTest extends PHPUnit_Framework_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());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue