summaryrefslogtreecommitdiff
path: root/modules/bhavika/photo_gallery/tests
diff options
context:
space:
mode:
authorBhavika-keswani2019-07-02 12:41:45 +0530
committerBhavika-keswani2019-07-02 12:41:45 +0530
commit565af64fc81211897625be2b000a28c910174edb (patch)
treec2f74ec442ddbcce89b9c0821d0820770402cd51 /modules/bhavika/photo_gallery/tests
parent3ad1b8d590d7d11d83e8c923970690900dc31f70 (diff)
downloadacadmix_distribution-565af64fc81211897625be2b000a28c910174edb.tar.gz
acadmix_distribution-565af64fc81211897625be2b000a28c910174edb.tar.bz2
acadmix_distribution-565af64fc81211897625be2b000a28c910174edb.zip
Custom modules added
Diffstat (limited to 'modules/bhavika/photo_gallery/tests')
-rw-r--r--modules/bhavika/photo_gallery/tests/Controller/PhotoGalleryControllerTest.php39
-rw-r--r--modules/bhavika/photo_gallery/tests/src/Functional/LoadTest.php46
2 files changed, 85 insertions, 0 deletions
diff --git a/modules/bhavika/photo_gallery/tests/Controller/PhotoGalleryControllerTest.php b/modules/bhavika/photo_gallery/tests/Controller/PhotoGalleryControllerTest.php
new file mode 100644
index 0000000..5dd8f26
--- /dev/null
+++ b/modules/bhavika/photo_gallery/tests/Controller/PhotoGalleryControllerTest.php
@@ -0,0 +1,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.');
+ }
+
+}
diff --git a/modules/bhavika/photo_gallery/tests/src/Functional/LoadTest.php b/modules/bhavika/photo_gallery/tests/src/Functional/LoadTest.php
new file mode 100644
index 0000000..dfe0211
--- /dev/null
+++ b/modules/bhavika/photo_gallery/tests/src/Functional/LoadTest.php
@@ -0,0 +1,46 @@
+<?php
+
+namespace Drupal\Tests\photo_gallery\Functional;
+
+use Drupal\Core\Url;
+use Drupal\Tests\BrowserTestBase;
+
+/**
+ * Simple test to ensure that main page loads with module enabled.
+ *
+ * @group photo_gallery
+ */
+class LoadTest extends BrowserTestBase {
+
+ /**
+ * Modules to enable.
+ *
+ * @var array
+ */
+ public static $modules = ['photo_gallery'];
+
+ /**
+ * A user with permission to administer site configuration.
+ *
+ * @var \Drupal\user\UserInterface
+ */
+ protected $user;
+
+ /**
+ * {@inheritdoc}
+ */
+ protected function setUp() {
+ parent::setUp();
+ $this->user = $this->drupalCreateUser(['administer site configuration']);
+ $this->drupalLogin($this->user);
+ }
+
+ /**
+ * Tests that the home page loads with a 200 response.
+ */
+ public function testLoad() {
+ $this->drupalGet(Url::fromRoute('<front>'));
+ $this->assertSession()->statusCodeEquals(200);
+ }
+
+}