mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Optimized dom management
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?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));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user