infinito/application/symfony/tests/Unit/Domain/LayerManagement/LayerInterfaceMapTest.php

20 lines
437 B
PHP
Raw Normal View History

2019-02-25 16:38:54 +01:00
<?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));
}
}
}