You are here

public function LoadTest::testLoad in Taxonomy Import 2.x

Tests that the home page loads with a 200 response.

File

tests/src/Functional/LoadTest.php, line 46

Class

LoadTest
Simple test to ensure that main page loads with module enabled.

Namespace

Drupal\Tests\taxonomy_import\Functional

Code

public function testLoad() {
  $this
    ->drupalGet(Url::fromRoute('<front>'));
  $this
    ->assertSession()
    ->statusCodeEquals(200);
}