You are here

class FunctionCommentUnitTest in Coder 8.2

Hierarchy

Expanded class hierarchy of FunctionCommentUnitTest

File

coder_sniffer/Drupal/Test/Commenting/FunctionCommentUnitTest.php, line 7

Namespace

Drupal\Sniffs\Commenting
View source
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.
   *
   * @return array(int => int)
   */
  public function getErrorList($testFile = NULL) {
    switch ($testFile) {
      case 'FunctionCommentUnitTest.inc':
        return array(
          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,
          389 => 2,
          390 => 2,
          401 => 1,
          414 => 1,
          416 => 1,
          426 => 2,
          427 => 2,
        );
      case 'FunctionCommentUnitTest.1.inc':
        return array();
      case 'FunctionCommentUnitTest.2.inc':
        return array(
          8 => 1,
        );
    }
  }

  //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.
   *
   * @return array(int => int)
   */
  public function getWarningList($testFile = NULL) {
    return array();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CoderSniffUnitTest::$backupGlobals protected property Enable or disable the backup and restoration of the $GLOBALS array. Overwrite this attribute in a child class of TestCase. Setting this attribute in setUp() has no effect!
CoderSniffUnitTest::$standardsDir public property The path to the standard's main directory.
CoderSniffUnitTest::$testsDir public property The path to the standard's test directory.
CoderSniffUnitTest::allSniffCodes protected function Returns a list of sniff codes that should be checked in this test. 3
CoderSniffUnitTest::generateFailureMessages public function Generate a list of test failures for a given sniffed file.
CoderSniffUnitTest::getTestFiles protected function Get a list of all test files to check. 18
CoderSniffUnitTest::setCliValues public function Get a list of CLI values to set before the file is tested.
CoderSniffUnitTest::setUp protected function Sets up this unit test.
CoderSniffUnitTest::shouldSkipTest protected function Should this test be skipped for some reason.
CoderSniffUnitTest::testSniff final public function Tests the extending classes Sniff class.
FunctionCommentUnitTest::getErrorList public function Returns the lines where errors should occur. Overrides CoderSniffUnitTest::getErrorList
FunctionCommentUnitTest::getWarningList public function Returns the lines where warnings should occur. Overrides CoderSniffUnitTest::getWarningList