PSR0WebTest.php

Namespace

Drupal\simpletest\Tests

File

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