32 lines
808 B
PHP
32 lines
808 B
PHP
<?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));
|
|
}
|
|
}
|