public static function EntityAccessCheckTest::getInfo

This method exists to support the simpletest UI runner.

It should eventually be replaced with something native to phpunit.

Also, this method is empty because you can't have an abstract static method. Sub-classes should always override it.

Return value

array An array describing the test like so: array( 'name' => 'Something Test', 'description' => 'Tests Something', 'group' => 'Something', )

Overrides UnitTestCase::getInfo

File

drupal/core/tests/Drupal/Tests/Core/Entity/EntityAccessCheckTest.php, line 22
Contains \Drupal\Tests\Core\Entity\EntityAccessCheckTest.

Class

EntityAccessCheckTest
Tests the entity access controller.

Namespace

Drupal\Tests\Core\Entity

Code

public static function getInfo() {
  return array(
    'name' => 'Entity access check test',
    'description' => 'Unit test of entity access checking system.',
    'group' => 'Entity',
  );
}