diff options
author | Bhavika-keswani | 2019-07-02 12:41:45 +0530 |
---|---|---|
committer | Bhavika-keswani | 2019-07-02 12:41:45 +0530 |
commit | 565af64fc81211897625be2b000a28c910174edb (patch) | |
tree | c2f74ec442ddbcce89b9c0821d0820770402cd51 /modules/bhavika/company/tests/Controller/CompanyControllerTest.php | |
parent | 3ad1b8d590d7d11d83e8c923970690900dc31f70 (diff) | |
download | acadmix_distribution-565af64fc81211897625be2b000a28c910174edb.tar.gz acadmix_distribution-565af64fc81211897625be2b000a28c910174edb.tar.bz2 acadmix_distribution-565af64fc81211897625be2b000a28c910174edb.zip |
Custom modules added
Diffstat (limited to 'modules/bhavika/company/tests/Controller/CompanyControllerTest.php')
-rw-r--r-- | modules/bhavika/company/tests/Controller/CompanyControllerTest.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/bhavika/company/tests/Controller/CompanyControllerTest.php b/modules/bhavika/company/tests/Controller/CompanyControllerTest.php new file mode 100644 index 0000000..66debed --- /dev/null +++ b/modules/bhavika/company/tests/Controller/CompanyControllerTest.php @@ -0,0 +1,39 @@ +<?php + +namespace Drupal\company\Tests; + +use Drupal\simpletest\WebTestBase; + +/** + * Provides automated tests for the company module. + */ +class CompanyControllerTest extends WebTestBase { + + + /** + * {@inheritdoc} + */ + public static function getInfo() { + return [ + 'name' => "company CompanyController's controller functionality", + 'description' => 'Test Unit for module company and controller CompanyController.', + 'group' => 'Other', + ]; + } + + /** + * {@inheritdoc} + */ + public function setUp() { + parent::setUp(); + } + + /** + * Tests company functionality. + */ + public function testCompanyController() { + // Check that the basic functions of module company. + $this->assertEquals(TRUE, TRUE, 'Test Unit Generated via Drupal Console.'); + } + +} |