function AnnotationBaseTest::testSetProvider

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testSetProvider()
  2. 8.9.x core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php \Drupal\Tests\Component\Annotation\AnnotationBaseTest::testSetProvider()
  3. 10 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 20

Class

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

Namespace

Drupal\Tests\Component\Annotation

Code

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

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