function FieldDefinitionTest::testInvalidDefaultValueCallback
Tests invalid default value callbacks.
@covers ::setDefaultValueCallback
      
    
@dataProvider factoryTypeProvider
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Entity/ FieldDefinitionTest.php, line 289  
Class
- FieldDefinitionTest
 - Unit test for the FieldDefinition class.
 
Namespace
Drupal\Tests\Core\EntityCode
public function testInvalidDefaultValueCallback($factory_name) : void {
  $definition = $this->initializeFieldUsingFactory($factory_name);
  // setDefaultValueCallback returns $this.
  $this->expectException(\InvalidArgumentException::class);
  $definition->setDefaultValueCallback([
    static::class,
    'mockDefaultValueCallback',
  ]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.