You are here

protected function InlineBlockTitleAutomaticTest::assertTitleFieldsNotExist in Inline Block Title Automatic 8

Assert the title fields do not exist.

1 call to InlineBlockTitleAutomaticTest::assertTitleFieldsNotExist()
InlineBlockTitleAutomaticTest::testAutomaticTitle in tests/src/Functional/InlineBlockTitleAutomaticTest.php
Test the automatic title.

File

tests/src/Functional/InlineBlockTitleAutomaticTest.php, line 148

Class

InlineBlockTitleAutomaticTest
Test the inline block automatic module.

Namespace

Drupal\Tests\inline_block_title_automatic\Functional

Code

protected function assertTitleFieldsNotExist() {
  $this
    ->assertSession()
    ->fieldNotExists('settings[label]');
  $this
    ->assertSession()
    ->fieldNotExists('settings[label_display]');
}