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