19 declare(strict_types=1);
28 require_once(
'./vendor/composer/vendor/autoload.php');
39 protected function setUp(): void
49 $this->meta_content->addMetaDatum($html_meta_data);
50 $collection = $this->meta_content->getMetaData();
52 $first_item = $collection[0];
53 $this->assertInstanceOf(Tag::class, $first_item);
54 $this->assertEquals($html, $first_item->toHtml());
59 $meta_datum_key =
'key';
60 $meta_datum_1_value =
'value_1';
61 $meta_datum_2_value =
'value_2';
62 $meta_datum_1 =
new UserDefined($meta_datum_key, $meta_datum_1_value);
63 $meta_datum_2 =
new UserDefined($meta_datum_key, $meta_datum_2_value);
65 $this->meta_content->addMetaDatum($meta_datum_1);
66 $first_item = $this->meta_content->getMetaData()[$meta_datum_key];
68 $this->assertInstanceOf(UserDefined::class, $first_item);
69 $this->assertEquals($meta_datum_1_value, $first_item->getValue());
71 $this->meta_content->addMetaDatum($meta_datum_2);
72 $first_item = $this->meta_content->getMetaData()[$meta_datum_key];
74 $this->assertInstanceOf(UserDefined::class, $first_item);
75 $this->assertNotEquals($meta_datum_1_value, $first_item->getValue());
76 $this->assertEquals($meta_datum_2_value, $first_item->getValue());
81 return new class ($html) extends
Tag {
83 protected string $html
87 public function toHtml():
string
PhpIncompatibleReturnTypeInspection
__construct()
Constructor setup ILIAS global object public.