mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	Deleted unnecessary integration test and specified parameter
This commit is contained in:
		@@ -1,20 +0,0 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace tests\Integration\Controller\API\Rest;
 | 
			
		||||
 | 
			
		||||
use PHPUnit\Framework\TestCase;
 | 
			
		||||
use Infinito\DBAL\Types\Meta\Right\LayerType;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @author kevinfrantz
 | 
			
		||||
 */
 | 
			
		||||
class ControllerLayerIntegrationTest extends TestCase
 | 
			
		||||
{
 | 
			
		||||
    public function testThatControllerForEachLayerExist(): void
 | 
			
		||||
    {
 | 
			
		||||
        foreach (LayerType::getChoices() as $layer) {
 | 
			
		||||
            $className = 'Infinito\\Controller\\API\\Rest\\'.ucfirst($layer).'Controller';
 | 
			
		||||
            $this->assertTrue(class_exists($className));
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user