mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Registry\Tests;
|
|
|
|
use InvalidArgumentException;
|
|
use DesignPatterns\Structural\Registry\Registry;
|
|
use DesignPatterns\Structural\Registry\Service;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class RegistryTest extends TestCase
|
|
{
|
|
/**
|
|
* @var Service
|
|
*/
|
|
private MockObject $service;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->service = $this->getMockBuilder(Service::class)->getMock();
|
|
}
|
|
|
|
public function testSetAndGetLogger()
|
|
{
|
|
Registry::set(Registry::LOGGER, $this->service);
|
|
|
|
$this->assertSame($this->service, Registry::get(Registry::LOGGER));
|
|
}
|
|
|
|
public function testThrowsExceptionWhenTryingToSetInvalidKey()
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
|
|
Registry::set('foobar', $this->service);
|
|
}
|
|
|
|
/**
|
|
* notice @runInSeparateProcess here: without it, a previous test might have set it already and
|
|
* testing would not be possible. That's why you should implement Dependency Injection where an
|
|
* injected class may easily be replaced by a mockup
|
|
*
|
|
* @runInSeparateProcess
|
|
*/
|
|
public function testThrowsExceptionWhenTryingToGetNotSetKey()
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
|
|
Registry::get(Registry::LOGGER);
|
|
}
|
|
}
|