You are here

public function AnnotationBaseTest::testSetProvider in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testSetProvider()
  2. 9 core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testSetProvider()

@covers ::getProvider @covers ::setProvider

File

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

Class

AnnotationBaseTest
@coversDefaultClass \Drupal\Component\Annotation\AnnotationBase @group Annotation

Namespace

Drupal\Tests\Component\Annotation

Code

public function testSetProvider() {
  $plugin = new AnnotationBaseStub();
  $plugin
    ->setProvider('example');
  $this
    ->assertEquals('example', $plugin
    ->getProvider());
}