summaryrefslogtreecommitdiff
path: root/modules/bhavika/legal_forms1/tests/Controller
diff options
context:
space:
mode:
authorBhavika-keswani2019-07-02 12:41:45 +0530
committerBhavika-keswani2019-07-02 12:41:45 +0530
commit565af64fc81211897625be2b000a28c910174edb (patch)
treec2f74ec442ddbcce89b9c0821d0820770402cd51 /modules/bhavika/legal_forms1/tests/Controller
parent3ad1b8d590d7d11d83e8c923970690900dc31f70 (diff)
downloadacadmix_distribution-565af64fc81211897625be2b000a28c910174edb.tar.gz
acadmix_distribution-565af64fc81211897625be2b000a28c910174edb.tar.bz2
acadmix_distribution-565af64fc81211897625be2b000a28c910174edb.zip
Custom modules added
Diffstat (limited to 'modules/bhavika/legal_forms1/tests/Controller')
-rw-r--r--modules/bhavika/legal_forms1/tests/Controller/LegalFormsControllerTest.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/bhavika/legal_forms1/tests/Controller/LegalFormsControllerTest.php b/modules/bhavika/legal_forms1/tests/Controller/LegalFormsControllerTest.php
new file mode 100644
index 0000000..37eb9ce
--- /dev/null
+++ b/modules/bhavika/legal_forms1/tests/Controller/LegalFormsControllerTest.php
@@ -0,0 +1,39 @@
+<?php
+
+namespace Drupal\legal_forms1\Tests;
+
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Provides automated tests for the legal_forms1 module.
+ */
+class LegalFormsControllerTest extends WebTestBase {
+
+
+ /**
+ * {@inheritdoc}
+ */
+ public static function getInfo() {
+ return [
+ 'name' => "legal_forms1 LegalFormsController's controller functionality",
+ 'description' => 'Test Unit for module legal_forms1 and controller LegalFormsController.',
+ 'group' => 'Other',
+ ];
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function setUp() {
+ parent::setUp();
+ }
+
+ /**
+ * Tests legal_forms1 functionality.
+ */
+ public function testLegalFormsController() {
+ // Check that the basic functions of module legal_forms1.
+ $this->assertEquals(TRUE, TRUE, 'Test Unit Generated via Drupal Console.');
+ }
+
+}