You are here

public function SocialAuthGoogleSettingsFormTest::testSettingsFormSubmission in Social Auth Google 3.x

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/SocialAuthGoogleSettingsFormTest.php \Drupal\Tests\social_auth_google\Functional\SocialAuthGoogleSettingsFormTest::testSettingsFormSubmission()

Test settings form submission.

File

tests/src/Functional/SocialAuthGoogleSettingsFormTest.php, line 55

Class

SocialAuthGoogleSettingsFormTest
Test Social Auth Google settings form.

Namespace

Drupal\Tests\social_auth_google\Functional

Code

public function testSettingsFormSubmission() {
  $this->edit = [
    'client_id' => $this
      ->randomString(10),
    'client_secret' => $this
      ->randomString(10),
  ];
  $this
    ->checkSettingsFormSubmission();
}