public function SimpleRecaptchaTestBase::testHomepage in Simple Google reCAPTCHA 8
Tests that the configuration page can be reached.
File
- tests/
src/ Functional/ SimpleRecaptchaTestBase.php, line 50
Class
- SimpleRecaptchaTestBase
- Test base for simple_recaptcha module.
Namespace
Drupal\Tests\simple_recaptcha\FunctionalCode
public function testHomepage() {
// Permissions / config page existance check.
$this
->drupalGet('<front>');
$this
->assertSession()
->statusCodeEquals(200);
}