1 | <?php |
||
19 | class HtmlTest extends TestCaseAbstract |
||
20 | { |
||
21 | /** |
||
22 | * testHtml |
||
23 | * |
||
24 | * @since 2.6.0 |
||
25 | * |
||
26 | * @param string $html |
||
27 | * @param string $expect |
||
28 | * |
||
29 | * @dataProvider providerAutoloader |
||
30 | */ |
||
31 | |||
32 | public function testHtml(string $html = null, string $expect = null) : void |
||
47 | |||
48 | /** |
||
49 | * testAppend |
||
50 | * |
||
51 | * @since 2.6.0 |
||
52 | * |
||
53 | * @param string $html |
||
54 | * @param string $append |
||
55 | * @param string $expect |
||
56 | * |
||
57 | * @dataProvider providerAutoloader |
||
58 | */ |
||
59 | |||
60 | public function testAppend(string $html = null, string $append = null, string $expect = null) : void |
||
75 | |||
76 | /** |
||
77 | * testPrepend |
||
78 | * |
||
79 | * @since 2.6.0 |
||
80 | * |
||
81 | * @param string $html |
||
82 | * @param string $prepend |
||
83 | * @param string $expect |
||
84 | * |
||
85 | * @dataProvider providerAutoloader |
||
86 | */ |
||
87 | |||
88 | public function testPrepend(string $html = null, string $prepend = null, string $expect = null) : void |
||
103 | |||
104 | /** |
||
105 | * testClear |
||
106 | * |
||
107 | * @since 3.0.0 |
||
108 | */ |
||
109 | |||
110 | public function testClear() : void |
||
126 | } |
||
127 |