public function FormAssemblyLoadTest::testLoad in FormAssembly 8
Tests that the config page loads with a 200 response.
File
- tests/
src/ Functional/ FormAssemblyLoadTest.php, line 52
Class
- FormAssemblyLoadTest
- Simple test to ensure that main settings page loads with module enabled.
Namespace
Drupal\Tests\formassembly\FunctionalCode
public function testLoad() {
$this
->drupalGet(Url::fromRoute('fa_form.settings'));
$this
->assertResponse(200);
}