class ExampleTest in X Autoload 7.2
Hierarchy
- class \Drupal\xautoload_example\Tests\ExampleTest extends \Drupal\xautoload_example\Tests\DrupalUnitTestCase
Expanded class hierarchy of ExampleTest
File
- modules/xautoload_example/ lib/ Drupal/ xautoload_example/ Tests/ ExampleTest.php, line 5 
Namespace
Drupal\xautoload_example\TestsView source
class ExampleTest extends \DrupalUnitTestCase {
  static function getInfo() {
    return array(
      'name' => 'X Autoload example test',
      'description' => 'This test class is only to prove that disabled modules still have their tests working.',
      'group' => 'X Autoload Example',
    );
  }
  function testStringConcat() {
    $this
      ->assert('aa' + 'bb' == 'aabb', "'aa' + 'bb' == 'aabb'");
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| ExampleTest:: | static | function | ||
| ExampleTest:: | function | 
