You are here

public function PaymentReferenceTest::testStorageSettingsForm in Payment 8.2

@covers ::storageSettingsForm

File

modules/payment_reference/tests/src/Unit/Plugin/Field/FieldType/PaymentReferenceTest.php, line 119

Class

PaymentReferenceTest
@coversDefaultClass \Drupal\payment_reference\Plugin\Field\FieldType\PaymentReference

Namespace

Drupal\Tests\payment_reference\Unit\Plugin\Field\FieldType

Code

public function testStorageSettingsForm() {
  $form = [];
  $form_state = $this
    ->createMock(FormStateInterface::class);
  $has_data = TRUE;
  $this
    ->assertSame([], $this->sut
    ->storageSettingsForm($form, $form_state, $has_data));
}