function AnnotationBaseTest::testGetId

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testGetId()
  2. 8.9.x core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testGetId()
  3. 10 core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testGetId()

@covers ::getId

File

core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php, line 29

Class

AnnotationBaseTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Component%21Annotation%21AnnotationBase.php/class/AnnotationBase/11.x" title="Provides a base class for classed annotations." class="local">\Drupal\Component\Annotation\AnnotationBase</a> @group Annotation

Namespace

Drupal\Tests\Component\Annotation

Code

public function testGetId() : void {
    $plugin = new AnnotationBaseStub();
    // Doctrine sets the public prop directly.
    $plugin->id = 'example';
    $this->assertEquals('example', $plugin->getId());
}

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