19 declare(strict_types=1);
35 protected function setUp(): void
42 $null_tag = $this->
factory->nullTag();
44 $this->assertInstanceOf(NullTag::class, $null_tag);
45 $this->assertEmpty($null_tag->toHtml());
50 $test_tag_1_html =
'test_tag_1_html';
53 $test_tag_2_html =
'test_tag_2_html';
56 $expected_html = $test_tag_1_html . PHP_EOL . $test_tag_2_html . PHP_EOL;
58 $tag_collection = $this->
factory->collection([$test_tag_1, $test_tag_2]);
60 $this->assertCount(2, iterator_to_array($tag_collection->getTags()));
61 $this->assertEquals($expected_html, $tag_collection->toHtml());
66 $tag_collection = $this->
factory->collection([]);
68 $this->assertEmpty(iterator_to_array($tag_collection->getTags()));
69 $this->assertEmpty($tag_collection->toHtml());
74 $test_tag_1_html =
'test_tag_1_html';
77 $test_tag_2_html =
'test_tag_2_html';
80 $test_tag_3_html =
'test_tag_3_html';
83 $expected_html = $test_tag_1_html . PHP_EOL . $test_tag_2_html . PHP_EOL . $test_tag_3_html . PHP_EOL;
85 $tag_collection = $this->
factory->collection([
86 $this->
factory->collection([$test_tag_1, $test_tag_2]),
90 $this->assertCount(3, iterator_to_array($tag_collection->getTags()));
91 $this->assertEquals($expected_html, $tag_collection->toHtml());
96 $key =
'expected_key';
97 $val =
'expected_value';
99 $user_defined_tag = $this->
factory->userDefined($key, $val);
101 $this->assertInstanceOf(UserDefined::class, $user_defined_tag);
103 "<meta name=\"$key\" content=\"$val\" />",
104 $user_defined_tag->toHtml()
110 return new class ($html) extends
Tag {
112 protected string $html
116 public function toHtml():
string
__construct(Container $dic, ilPlugin $plugin)