You are here

protected function CoreVersionRequirementUnitTest::getTestFiles in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/DrupalPractice/InfoFiles/CoreVersionRequirementUnitTest.php \DrupalPractice\Test\InfoFiles\CoreVersionRequirementUnitTest::getTestFiles()

Returns a list of test files that should be checked.

Parameters

string $testFileBase The base path that the unit tests files will have.:

Return value

array<string>

Overrides CoderSniffUnitTest::getTestFiles

File

tests/DrupalPractice/InfoFiles/CoreVersionRequirementUnitTest.php, line 59

Class

CoreVersionRequirementUnitTest

Namespace

DrupalPractice\Test\InfoFiles

Code

protected function getTestFiles($testFileBase) : array {
  return [
    __DIR__ . '/core_version.info.yml',
    __DIR__ . '/core_version_test.info.yml',
    __DIR__ . '/core_version.config.info.yml',
  ];
}