Mercurial > hg > isophonics-drupal-site
view core/tests/Drupal/Tests/Component/Annotation/AnnotationBaseTest.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 1fec387a4317 |
children |
line wrap: on
line source
<?php namespace Drupal\Tests\Component\Annotation; use Drupal\Component\Annotation\AnnotationBase; use PHPUnit\Framework\TestCase; /** * @coversDefaultClass \Drupal\Component\Annotation\AnnotationBase * @group Annotation */ class AnnotationBaseTest extends TestCase { /** * @covers ::getProvider * @covers ::setProvider */ public function testSetProvider() { $plugin = new AnnotationBaseStub(); $plugin->setProvider('example'); $this->assertEquals('example', $plugin->getProvider()); } /** * @covers ::getId */ public function testGetId() { $plugin = new AnnotationBaseStub(); // Doctrine sets the public prop directly. $plugin->id = 'example'; $this->assertEquals('example', $plugin->getId()); } /** * @covers ::getClass * @covers ::setClass */ public function testSetClass() { $plugin = new AnnotationBaseStub(); $plugin->setClass('example'); $this->assertEquals('example', $plugin->getClass()); } } /** * {@inheritdoc} */ class AnnotationBaseStub extends AnnotationBase { /** * {@inheritdoc} */ public function get() {} }