byu_news-8.x-1.x-dev/byu_news_consumer/tests/src/Functional/LoadTest.php
byu_news_consumer/tests/src/Functional/LoadTest.php
<?php namespace Drupal\Tests\byu_news_consumer\Functional; use Drupal\Core\Url; use Drupal\Tests\BrowserTestBase; /** * Simple test to ensure that main page loads with module enabled. * * @group byu_news_consumer */ class LoadTest extends BrowserTestBase { /** * Modules to enable. * * @var array */ public static $modules = ['byu_news_consumer']; /** * 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->assertResponse(200); } }