You are here

public static function DrupalTest::getInfo in Autoload 7

Same name and namespace in other branches
  1. 7.2 src/Tests/Unit/DrupalTest.php \Drupal\autoload\Tests\Unit\DrupalTest::getInfo()

Overrides AuxiliaryTest::getInfo

File

src/Tests/Unit/DrupalTest.php, line 18

Class

DrupalTest
Class DrupalTest.

Namespace

Drupal\autoload\Tests\Unit

Code

public static function getInfo() {
  $info = parent::getInfo();
  $info['name'] = 'Drupal';
  $info['description'] = t('Testing functionality of autoload Drupal-way namespaces.');
  return $info;
}