32 lines
		
	
	
		
			808 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			808 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
namespace Magento\Setup\Module\Dependency;
 | 
						|
 | 
						|
class CircularTest extends \PHPUnit\Framework\TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var Circular
 | 
						|
     */
 | 
						|
    protected $circular;
 | 
						|
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $this->circular = new Circular();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testBuildCircularDependencies()
 | 
						|
    {
 | 
						|
        $dependencies = [1 => [2], 2 => [3, 5], 3 => [1], 5 => [2]];
 | 
						|
        $expectedCircularDependencies = [
 | 
						|
            1 => [[1, 2, 3, 1]],
 | 
						|
            2 => [[2, 3, 1, 2], [2, 5, 2]],
 | 
						|
            3 => [[3, 1, 2, 3]],
 | 
						|
            5 => [[5, 2, 5]],
 | 
						|
        ];
 | 
						|
        $this->assertEquals($expectedCircularDependencies, $this->circular->buildCircularDependencies($dependencies));
 | 
						|
    }
 | 
						|
}
 |