Projet

Général

Profil

Paste
Télécharger (395 octets) Statistiques
| Branche: | Révision:

root / htmltest / modules / simpletest / lib / Drupal / simpletest / Tests / PSR0WebTest.php @ 85ad3d82

1
<?php
2

    
3
namespace Drupal\simpletest\Tests;
4

    
5
class PSR0WebTest extends \DrupalWebTestCase {
6

    
7
  public static function getInfo() {
8
    return array(
9
      'name' => 'PSR0 web test',
10
      'description' => 'We want to assert that this PSR-0 test case is being discovered.',
11
      'group' => 'SimpleTest',
12
    );
13
  }
14

    
15
  function testArithmetics() {
16
    $this->assert(1 + 1 == 2, '1 + 1 == 2');
17
  }
18
}