2017-09-20 00:04:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Engelsystem\Test\Config;
|
|
|
|
|
|
|
|
use Engelsystem\Application;
|
|
|
|
use Engelsystem\Container\Container;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
|
|
|
class ApplicationTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @covers \Engelsystem\Application::__construct
|
|
|
|
* @covers \Engelsystem\Application::registerBaseBindings
|
|
|
|
*/
|
|
|
|
public function testConstructor()
|
|
|
|
{
|
|
|
|
$app = new Application();
|
|
|
|
|
|
|
|
$this->assertInstanceOf(Container::class, $app);
|
|
|
|
$this->assertInstanceOf(ContainerInterface::class, $app);
|
|
|
|
$this->assertSame($app, $app->get('app'));
|
|
|
|
$this->assertSame($app, $app->get('container'));
|
|
|
|
$this->assertSame($app, $app->get(Container::class));
|
|
|
|
$this->assertSame($app, $app->get(Application::class));
|
|
|
|
$this->assertSame($app, $app->get(ContainerInterface::class));
|
2017-09-21 18:37:37 +02:00
|
|
|
$this->assertSame($app, Application::getInstance());
|
2017-09-20 00:04:59 +02:00
|
|
|
$this->assertSame($app, Container::getInstance());
|
|
|
|
}
|
|
|
|
}
|