ActionMethodAttributeTest.php

Namespace

Drupal\Tests\Core\Config\Action

File

core/tests/Drupal/Tests/Core/Config/Action/ActionMethodAttributeTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\Config\Action;

use Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException;
use Drupal\Core\Config\Action\Attribute\ActionMethod;
use Drupal\Tests\UnitTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;

/**
 * Tests Drupal\Core\Config\Action\Attribute\ActionMethod.
 */
class ActionMethodAttributeTest extends UnitTestCase {
  
  /**
   * Tests invalid function name.
   *
   * @legacy-covers ::__construct
   */
  public function testInvalidFunctionName() : void {
    $name = "hello Goodbye";
    $this->expectException(InvalidPluginDefinitionException::class);
    $this->expectExceptionMessage("'{$name}' is not a valid PHP function name.");
    new ActionMethod(name: $name);
  }

}

Classes

Title Deprecated Summary
ActionMethodAttributeTest Tests Drupal\Core\Config\Action\Attribute\ActionMethod.

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