function FieldItemListTest::testDefaultValuesFormValidate

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Field/FieldItemListTest.php \Drupal\Tests\Core\Field\FieldItemListTest::testDefaultValuesFormValidate()
  2. 10 core/tests/Drupal/Tests/Core/Field/FieldItemListTest.php \Drupal\Tests\Core\Field\FieldItemListTest::testDefaultValuesFormValidate()
  3. 11.x core/tests/Drupal/Tests/Core/Field/FieldItemListTest.php \Drupal\Tests\Core\Field\FieldItemListTest::testDefaultValuesFormValidate()

@covers ::defaultValuesFormValidate

File

core/tests/Drupal/Tests/Core/Field/FieldItemListTest.php, line 316

Class

FieldItemListTest
@coversDefaultClass \Drupal\Core\Field\FieldItemList @group Field

Namespace

Drupal\Tests\Core\Field

Code

public function testDefaultValuesFormValidate() {
    $field_definition = $this->createMock(FieldDefinitionInterface::class);
    
    /** @var \Drupal\Core\Field\FieldItemList|\PHPUnit\Framework\MockObject\MockObject $field_list */
    $field_list = $this->getMockBuilder(FieldItemList::class)
        ->setMethods([
        'defaultValueWidget',
        'validate',
    ])
        ->setConstructorArgs([
        $field_definition,
    ])
        ->getMock();
    $field_list->expects($this->any())
        ->method('defaultValueWidget')
        ->willReturn(NULL);
    $field_list->expects($this->never())
        ->method('validate');
    $form = [];
    $form_state = new FormState();
    $field_list->defaultValuesFormValidate([], $form, $form_state);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.