blob: 5dd8f2615e1925bfc4c3f3354defa526a1a0df49 (
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\photo_gallery\Tests;
use Drupal\simpletest\WebTestBase;
/**
* Provides automated tests for the photo_gallery module.
*/
class PhotoGalleryControllerTest extends WebTestBase {
/**
* {@inheritdoc}
*/
public static function getInfo() {
return [
'name' => "photo_gallery PhotoGalleryController's controller functionality",
'description' => 'Test Unit for module photo_gallery and controller PhotoGalleryController.',
'group' => 'Other',
];
}
/**
* {@inheritdoc}
*/
public function setUp() {
parent::setUp();
}
/**
* Tests photo_gallery functionality.
*/
public function testPhotoGalleryController() {
// Check that the basic functions of module photo_gallery.
$this->assertEquals(TRUE, TRUE, 'Test Unit Generated via Drupal Console.');
}
}
|