PSR4WebTest.php 395 B

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