blob: 66debeda6582b5f6944875c7e14b4ec7921d1e64 (
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\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.');
}
}
|