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