mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
20 lines
437 B
PHP
20 lines
437 B
PHP
|
<?php
|
||
|
|
||
|
namespace tests\Unit\Domain\LayerManagement;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Infinito\Domain\LayerManagement\LayerInterfaceMap;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
class LayerInterfaceMapTest extends TestCase
|
||
|
{
|
||
|
public function testIfInterfaceForEachLayerExist(): void
|
||
|
{
|
||
|
foreach (LayerInterfaceMap::getAllInterfaces() as $interface) {
|
||
|
$this->assertTrue(interface_exists($interface));
|
||
|
}
|
||
|
}
|
||
|
}
|