class PSR4WebTest in Drupal 7
Hierarchy
- class \Drupal\simpletest\Tests\PSR4WebTest extends \Drupal\simpletest\Tests\DrupalWebTestCase
Expanded class hierarchy of PSR4WebTest
File
- modules/
simpletest/ src/ Tests/ PSR4WebTest.php, line 5
Namespace
Drupal\simpletest\TestsView source
class PSR4WebTest extends \DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'PSR4 web test',
'description' => 'We want to assert that this PSR-4 test case is being discovered.',
'group' => 'SimpleTest',
);
}
function testArithmetics() {
$this
->assert(1 + 1 == 2, '1 + 1 == 2');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PSR4WebTest:: |
public static | function | ||
PSR4WebTest:: |
function |