You are here

public function BlazyAdminExtendedUnitTest::providerTestBuildSettingsForm in Blazy 8.2

Same name and namespace in other branches
  1. 8 tests/src/Unit/Form/BlazyAdminExtendedUnitTest.php \Drupal\Tests\blazy\Unit\Form\BlazyAdminExtendedUnitTest::providerTestBuildSettingsForm()

Provide test cases for ::testBuildSettingsForm.

File

tests/src/Unit/Form/BlazyAdminExtendedUnitTest.php, line 65

Class

BlazyAdminExtendedUnitTest
Tests the Blazy admin formatter form.

Namespace

Drupal\Tests\blazy\Unit\Form

Code

public function providerTestBuildSettingsForm() {
  return [
    [
      FALSE,
      FALSE,
    ],
    [
      TRUE,
      TRUE,
    ],
    [
      TRUE,
      FALSE,
    ],
    [
      FALSE,
      TRUE,
    ],
  ];
}