You are here

FunctionCommentUnitTest.php in Coder 8.3

Same filename and directory in other branches
  1. 8.3.x tests/Drupal/Commenting/FunctionCommentUnitTest.php

File

tests/Drupal/Commenting/FunctionCommentUnitTest.php
View source
<?php

namespace Drupal\Test\Commenting;

use Drupal\Test\CoderSniffUnitTest;
class FunctionCommentUnitTest extends CoderSniffUnitTest {

  /**
   * Returns the lines where errors should occur.
   *
   * The key of the array should represent the line number and the value
   * should represent the number of errors that should occur on that line.
   *
   * @param string $testFile The name of the file being tested.
   *
   * @return array<int, int>
   */
  protected function getErrorList(string $testFile) : array {
    switch ($testFile) {
      case 'FunctionCommentUnitTest.inc':
        return [
          12 => 1,
          14 => 1,
          33 => 1,
          43 => 1,
          53 => 1,
          62 => 1,
          71 => 1,
          78 => 1,
          87 => 1,
          92 => 1,
          101 => 1,
          113 => 1,
          126 => 2,
          147 => 1,
          148 => 2,
          180 => 1,
          187 => 1,
          195 => 1,
          205 => 1,
          215 => 1,
          216 => 1,
          225 => 3,
          233 => 1,
          235 => 1,
          237 => 1,
          248 => 1,
          250 => 1,
          252 => 1,
          254 => 1,
          256 => 1,
          285 => 1,
          298 => 1,
          308 => 1,
          311 => 1,
          321 => 1,
          324 => 1,
          334 => 1,
          345 => 1,
          357 => 1,
          360 => 1,
          371 => 1,
          374 => 1,
          389 => 2,
          390 => 2,
          401 => 1,
          414 => 1,
          416 => 1,
          426 => 2,
          427 => 2,
          450 => 1,
          460 => 1,
        ];
      case 'FunctionCommentUnitTest.1.inc':
        return [];
      case 'FunctionCommentUnitTest.2.inc':
        return [
          8 => 1,
        ];
    }

    //end switch
    return [];
  }

  //end getErrorList()

  /**
   * 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.
   *
   * @param string $testFile The name of the file being tested.
   *
   * @return array<int, int>
   */
  protected function getWarningList(string $testFile) : array {
    return [];
  }

}

//end class

Classes