public static function BreakpointMediaQueryTest::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/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php, line 20
Definition of Drupal\breakpoint\Tests\BreakpointMediaQueryTest.

Class

BreakpointMediaQueryTest
Tests for media queries in a breakpoint.

Namespace

Drupal\breakpoint\Tests

Code

public static function getInfo() {
  return array(
    'name' => 'Breakpoint media query tests',
    'description' => 'Test validation of media queries.',
    'group' => 'Breakpoint',
  );
}