ExampleTest.php

Namespace

Drupal\psr_0_test\Tests

File

drupal-7.x/modules/simpletest/tests/psr_0_test/lib/Drupal/psr_0_test/Tests/ExampleTest.php
View source
  1. <?php
  2. namespace Drupal\psr_0_test\Tests;
  3. class ExampleTest extends \DrupalWebTestCase {
  4. public static function getInfo() {
  5. return array(
  6. 'name' => 'PSR0 example test: PSR-0 in disabled modules.',
  7. 'description' => 'We want to assert that this test case is being discovered.',
  8. 'group' => 'SimpleTest',
  9. );
  10. }
  11. function testArithmetics() {
  12. $this->assert(1 + 1 == 2, '1 + 1 == 2');
  13. }
  14. }