summaryrefslogtreecommitdiff
path: root/modules/simpletest/src/Tests/PSR4WebTest.php
blob: 24c8d899966c6bc9c0a3c18e56c1f28d04cc32ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace Drupal\simpletest\Tests;

class PSR4WebTest extends \DrupalWebTestCase {

  public static function getInfo() {
    return array(
      'name' => 'PSR4 web test',
      'description' => 'We want to assert that this PSR-4 test case is being discovered.',
      'group' => 'SimpleTest',
    );
  }

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