summaryrefslogtreecommitdiff
path: root/modules/bhavika/legal_forms/tests/Controller
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bhavika/legal_forms/tests/Controller')
-rw-r--r--modules/bhavika/legal_forms/tests/Controller/LegalFormsControllerTest.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/bhavika/legal_forms/tests/Controller/LegalFormsControllerTest.php b/modules/bhavika/legal_forms/tests/Controller/LegalFormsControllerTest.php
new file mode 100644
index 0000000..c99135a
--- /dev/null
+++ b/modules/bhavika/legal_forms/tests/Controller/LegalFormsControllerTest.php
@@ -0,0 +1,39 @@
+<?php
+
+namespace Drupal\legal_forms\Tests;
+
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Provides automated tests for the legal_forms module.
+ */
+class LegalFormsControllerTest extends WebTestBase {
+
+
+ /**
+ * {@inheritdoc}
+ */
+ public static function getInfo() {
+ return [
+ 'name' => "legal_forms LegalFormsController's controller functionality",
+ 'description' => 'Test Unit for module legal_forms and controller LegalFormsController.',
+ 'group' => 'Other',
+ ];
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function setUp() {
+ parent::setUp();
+ }
+
+ /**
+ * Tests legal_forms functionality.
+ */
+ public function testLegalFormsController() {
+ // Check that the basic functions of module legal_forms.
+ $this->assertEquals(TRUE, TRUE, 'Test Unit Generated via Drupal Console.');
+ }
+
+}