function AnnotationBaseTest::testGetId

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

Tests get id.

File

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

Class

AnnotationBaseTest
Tests Drupal\Component\Annotation\AnnotationBase.

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.