Issue #3205037 by longwave, neclimdul: Drupal\Tests\Component\Annotation\PluginIdTest tests a non-existent constructor
parent
9298836906
commit
70eb124d5f
|
@ -15,17 +15,8 @@ class PluginIdTest extends TestCase {
|
||||||
* @covers ::get
|
* @covers ::get
|
||||||
*/
|
*/
|
||||||
public function testGet() {
|
public function testGet() {
|
||||||
// Assert plugin starts empty regardless of constructor.
|
// Assert plugin starts empty.
|
||||||
$plugin = new PluginID([
|
$plugin = new PluginID();
|
||||||
'foo' => 'bar',
|
|
||||||
'biz' => [
|
|
||||||
'baz' => 'boom',
|
|
||||||
],
|
|
||||||
'nestedAnnotation' => new PluginID([
|
|
||||||
'foo' => 'bar',
|
|
||||||
]),
|
|
||||||
'value' => 'biz',
|
|
||||||
]);
|
|
||||||
$this->assertEquals([
|
$this->assertEquals([
|
||||||
'id' => NULL,
|
'id' => NULL,
|
||||||
'class' => NULL,
|
'class' => NULL,
|
||||||
|
@ -47,7 +38,7 @@ class PluginIdTest extends TestCase {
|
||||||
* @covers ::getId
|
* @covers ::getId
|
||||||
*/
|
*/
|
||||||
public function testGetId() {
|
public function testGetId() {
|
||||||
$plugin = new PluginID([]);
|
$plugin = new PluginID();
|
||||||
$plugin->value = 'example';
|
$plugin->value = 'example';
|
||||||
$this->assertEquals('example', $plugin->getId());
|
$this->assertEquals('example', $plugin->getId());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue