summaryrefslogtreecommitdiff
path: root/modules/simpletest/lib/Drupal/simpletest/Tests/PSR0WebTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/lib/Drupal/simpletest/Tests/PSR0WebTest.php')
-rw-r--r--modules/simpletest/lib/Drupal/simpletest/Tests/PSR0WebTest.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/simpletest/lib/Drupal/simpletest/Tests/PSR0WebTest.php b/modules/simpletest/lib/Drupal/simpletest/Tests/PSR0WebTest.php
new file mode 100644
index 000000000..0292956ce
--- /dev/null
+++ b/modules/simpletest/lib/Drupal/simpletest/Tests/PSR0WebTest.php
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\simpletest\Tests;
+
+class PSR0WebTest extends \DrupalWebTestCase {
+
+ public static function getInfo() {
+ return array(
+ 'name' => 'PSR0 web test',
+ 'description' => 'We want to assert that this PSR-0 test case is being discovered.',
+ 'group' => 'SimpleTest',
+ );
+ }
+
+ function testArithmetics() {
+ $this->assert(1 + 1 == 2, '1 + 1 == 2');
+ }
+}