summaryrefslogtreecommitdiff
path: root/modules/mansimran/testimonials/tests/src/Functional/LoadTest.php
diff options
context:
space:
mode:
authorNitesh Kumar Sinha2019-07-02 17:40:53 +0530
committerGitHub2019-07-02 17:40:53 +0530
commit58dbf8fcb04c01c338b9e346b8266690c8b92a2f (patch)
treeab16a85a8213c31f2abaf34e9d7df44a0f7132ac /modules/mansimran/testimonials/tests/src/Functional/LoadTest.php
parentc63a20a2e293cb104027480a5770406e3f17c514 (diff)
parent0d50e51638dac37bb5133b5024f2e44811e2745e (diff)
downloadacadmix_distribution-58dbf8fcb04c01c338b9e346b8266690c8b92a2f.tar.gz
acadmix_distribution-58dbf8fcb04c01c338b9e346b8266690c8b92a2f.tar.bz2
acadmix_distribution-58dbf8fcb04c01c338b9e346b8266690c8b92a2f.zip
Merge pull request #15 from FOSSEE/stage
merging Stage into master
Diffstat (limited to 'modules/mansimran/testimonials/tests/src/Functional/LoadTest.php')
-rw-r--r--modules/mansimran/testimonials/tests/src/Functional/LoadTest.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/modules/mansimran/testimonials/tests/src/Functional/LoadTest.php b/modules/mansimran/testimonials/tests/src/Functional/LoadTest.php
new file mode 100644
index 0000000..6adde24
--- /dev/null
+++ b/modules/mansimran/testimonials/tests/src/Functional/LoadTest.php
@@ -0,0 +1,46 @@
+<?php
+
+namespace Drupal\Tests\testimonials\Functional;
+
+use Drupal\Core\Url;
+use Drupal\Tests\BrowserTestBase;
+
+/**
+ * Simple test to ensure that main page loads with module enabled.
+ *
+ * @group testimonials
+ */
+class LoadTest extends BrowserTestBase {
+
+ /**
+ * Modules to enable.
+ *
+ * @var array
+ */
+ public static $modules = ['testimonials'];
+
+ /**
+ * 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);
+ }
+
+}