blob: 8d7a0beaba978ce0284ee9d1458d3a8894fa2d71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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.');
}
}
|