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

20 lines
417 B
PHP
Raw Permalink Normal View History

2019-02-25 16:38:54 +01:00
<?php
namespace tests\Unit\Domain\Layer;
2019-02-25 16:38:54 +01:00
use Infinito\Domain\Layer\LayerInterfaceMap;
2020-04-02 21:13:35 +02:00
use PHPUnit\Framework\TestCase;
2019-02-25 16:38:54 +01:00
/**
* @author kevinfrantz
*/
class LayerInterfaceMapTest extends TestCase
{
public function testIfInterfaceForEachLayerExist(): void
{
foreach (LayerInterfaceMap::getAllInterfaces() as $interface) {
$this->assertTrue(interface_exists($interface));
}
}
}