We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42a334c commit e7fcf2dCopy full SHA for e7fcf2d
Magento2/Tests/Eslint/AbstractEslintTestCase.php
@@ -3,12 +3,23 @@
3
* Copyright © Magento, Inc. All rights reserved.
4
* See COPYING.txt for license details.
5
*/
6
+declare(strict_types=1);
7
+
8
namespace Magento2\Tests\Eslint;
9
10
use PHPUnit\Framework\TestCase;
11
12
+/**
13
+ * Abstract class AbstractEslintTestCase
14
+ *
15
+ * Test Eslint Rules (magento-coding-standard/eslint/rules)
16
+ */
17
abstract class AbstractEslintTestCase extends TestCase
18
{
19
+ /**
20
+ * @param string $testFile
21
+ * @param array $expectedMessages
22
23
protected function assertFileContainsError(string $testFile, array $expectedMessages)
24
25
exec(
0 commit comments