You are here

protected function GoodUnitTest::getWarningList in Coder 8.3.x

Same name in this branch
  1. 8.3.x tests/DrupalPractice/good/GoodUnitTest.php \DrupalPractice\Test\good\GoodUnitTest::getWarningList()
  2. 8.3.x tests/Drupal/good/GoodUnitTest.php \Drupal\Test\good\GoodUnitTest::getWarningList()
Same name and namespace in other branches
  1. 8.3 tests/DrupalPractice/good/GoodUnitTest.php \DrupalPractice\Test\good\GoodUnitTest::getWarningList()

Returns the lines where warnings should occur.

The key of the array should represent the line number and the value should represent the number of warnings that should occur on that line.

Parameters

string $testFile The name of the file being tested.:

Return value

array<int, int>

Overrides CoderSniffUnitTest::getWarningList

File

tests/DrupalPractice/good/GoodUnitTest.php, line 44

Class

GoodUnitTest
Unit test class for all good files that must not throw errors/warnings.

Namespace

DrupalPractice\Test\good

Code

protected function getWarningList(string $testFile) : array {
  return [];
}