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/department/tests/Controller | |
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/department/tests/Controller')
-rw-r--r-- | modules/bhavika/department/tests/Controller/DepartmentControllerTest.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/bhavika/department/tests/Controller/DepartmentControllerTest.php b/modules/bhavika/department/tests/Controller/DepartmentControllerTest.php new file mode 100644 index 0000000..8d7a0be --- /dev/null +++ b/modules/bhavika/department/tests/Controller/DepartmentControllerTest.php @@ -0,0 +1,39 @@ +<?php + +namespace Drupal\department\Tests; + +use Drupal\simpletest\WebTestBase; + +/** + * Provides automated tests for the department module. + */ +class DepartmentControllerTest extends WebTestBase { + + + /** + * {@inheritdoc} + */ + public static function getInfo() { + return [ + 'name' => "department DepartmentController's controller functionality", + 'description' => 'Test Unit for module department and controller DepartmentController.', + 'group' => 'Other', + ]; + } + + /** + * {@inheritdoc} + */ + public function setUp() { + parent::setUp(); + } + + /** + * Tests department functionality. + */ + public function testDepartmentController() { + // Check that the basic functions of module department. + $this->assertEquals(TRUE, TRUE, 'Test Unit Generated via Drupal Console.'); + } + +} |