/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/static/testsuite/Magento/Test/Legacy/WordsTest.php
46 строк
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 10:44
22 окт 2025, 10:44
264bea2
Код
Авторство
О чём код?
<?php /** * Copyright 2013 Adobe * All Rights Reserved. */ /** * Tests, that perform search of words, that signal of obsolete code */ namespace Magento\Test\Legacy; use Magento\Framework\Component\ComponentRegistrar; class WordsTest extends \PHPUnit\Framework\TestCase { /** * @var \Magento\TestFramework\Inspection\WordsFinder */ protected static $_wordsFinder; public static function setUpBeforeClass(): void { self::$_wordsFinder = new \Magento\TestFramework\Inspection\WordsFinder( glob(__DIR__ . '/_files/words_*.xml'), BP, new ComponentRegistrar() ); } public function testWords() { $invoker = new \Magento\Framework\App\Utility\AggregateInvoker($this); $invoker( /** * @param string $file */ function ($file) { $words = self::$_wordsFinder->findWords(realpath($file)); if ($words) { $this->fail("Found words: '" . implode("', '", $words) . "' in '{$file}' file"); } }, \Magento\Framework\App\Utility\Files::init()->getAllFiles() ); } }