You are here

public function EntityProcessorBaseTest::testBuildAdvancedForm in Feeds 8.3

@covers ::buildAdvancedForm

File

tests/src/Kernel/Feeds/Processor/EntityProcessorBaseTest.php, line 364

Class

EntityProcessorBaseTest
@coversDefaultClass \Drupal\feeds\Feeds\Processor\EntityProcessorBase @group feeds

Namespace

Drupal\Tests\feeds\Kernel\Feeds\Processor

Code

public function testBuildAdvancedForm() {
  $form = [];
  $form_state = $this
    ->createMock(FormStateInterface::class);
  $this
    ->assertIsArray($this->processor
    ->buildAdvancedForm($form, $form_state));
}