You are here

GoodUnitTest.php in Coder 8.2

File

coder_sniffer/DrupalPractice/Test/good/GoodUnitTest.php
View source
<?php

/**
 * Unit test class for all good files that must not throw errors/warnings.
 */
namespace DrupalPractice\good;

use Drupal\Test\CoderSniffUnitTest;

/**
 * Unit test class for all good files that must not throw errors/warnings.
 */
class GoodUnitTest 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) {
    return array();
  }

  //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();
  }

  //end getWarningList()

  /**
   * Returns a list of test files that should be checked.
   *
   * @return array The list of test files.
   */
  protected function getTestFiles($testFileBase) {
    $dir = dirname(__FILE__);
    $di = new \DirectoryIterator($dir);
    foreach ($di as $file) {
      $path = $file
        ->getPathname();
      if ($path !== __FILE__ && $file
        ->isFile()) {
        $testFiles[] = $path;
      }
    }

    // Get them in order.
    sort($testFiles);
    return $testFiles;
  }

  /**
   * Returns a list of sniff codes that should be checked in this test.
   *
   * @return array The list of sniff codes.
   */
  protected function allSniffCodes() {

    // We want to test all sniffs defined in the standard.
    return TRUE;
  }

}

//end class

Classes

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