Renamed domain LayerManagement to Layer

This commit is contained in:
Kevin Frantz
2019-05-30 16:18:10 +02:00
parent 592f7551a3
commit fd4093f270
14 changed files with 18 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace tests\Unit\Domain\Layer;
use PHPUnit\Framework\TestCase;
use Infinito\Domain\Layer\LayerInterfaceMap;
/**
* @author kevinfrantz
*/
class LayerInterfaceMapTest extends TestCase
{
public function testIfInterfaceForEachLayerExist(): void
{
foreach (LayerInterfaceMap::getAllInterfaces() as $interface) {
$this->assertTrue(interface_exists($interface));
}
}
}