public function FormTest::testFormStateDatabaseConnection

Tests a form with a form state storing a database connection.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Form/FormTest.php, line 671
Definition of Drupal\system\Tests\Form\FormTest.

Class

FormTest

Namespace

Drupal\system\Tests\Form

Code

public function testFormStateDatabaseConnection() {
  $this
    ->assertNoText('Database connection found');
  $this
    ->drupalPost('form-test/form_state-database', array(), t('Submit'));
  $this
    ->assertText('Database connection found');
}