Changeset 56299
- Timestamp:
- 07/25/2023 12:17:28 PM (20 months ago)
- Location:
- trunk/tests/phpunit/tests/html-api
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/html-api/wpHtmlProcessor.php
r56274 r56299 12 12 * @coversDefaultClass WP_HTML_Processor 13 13 */ 14 class Tests_HtmlApi_ wpHtmlProcessor extends WP_UnitTestCase {14 class Tests_HtmlApi_WpHtmlProcessor extends WP_UnitTestCase { 15 15 /** 16 16 * Ensure that the HTML Processor's public constructor function warns a developer to call -
trunk/tests/phpunit/tests/html-api/wpHtmlProcessorBreadcrumbs.php
r56274 r56299 12 12 * @coversDefaultClass WP_HTML_Processor 13 13 */ 14 class Tests_HtmlApi_ wpHtmlProcessorBreadcrumbs extends WP_UnitTestCase {14 class Tests_HtmlApi_WpHtmlProcessorBreadcrumbs extends WP_UnitTestCase { 15 15 /** 16 16 * @ticket 58517 -
trunk/tests/phpunit/tests/html-api/wpHtmlSupportRequiredOpenElements.php
r56274 r56299 26 26 * @coversDefaultClass WP_HTML_Processor 27 27 */ 28 class Tests_HtmlApi_ wpHtmlSupportRequiredOpenElements extends WP_UnitTestCase {28 class Tests_HtmlApi_WpHtmlSupportRequiredOpenElements extends WP_UnitTestCase { 29 29 /** 30 30 * Fails to assert if the HTML Processor handles the given tag. -
trunk/tests/phpunit/tests/html-api/wpHtmlTagProcessor-bookmark.php
r55555 r56299 12 12 * @coversDefaultClass WP_HTML_Tag_Processor 13 13 */ 14 class Tests_HtmlApi_ wpHtmlTagProcessor_Bookmark extends WP_UnitTestCase {14 class Tests_HtmlApi_WpHtmlTagProcessor_Bookmark extends WP_UnitTestCase { 15 15 16 16 /** -
trunk/tests/phpunit/tests/html-api/wpHtmlTagProcessor.php
r56133 r56299 12 12 * @coversDefaultClass WP_HTML_Tag_Processor 13 13 */ 14 class Tests_HtmlApi_ wpHtmlTagProcessor extends WP_UnitTestCase {14 class Tests_HtmlApi_WpHtmlTagProcessor extends WP_UnitTestCase { 15 15 const HTML_SIMPLE = '<div id="first"><span id="second">Text</span></div>'; 16 16 const HTML_WITH_CLASSES = '<div class="main with-border" id="first"><span class="not-main bold with-border" id="second">Text</span></div>';
Note: See TracChangeset
for help on using the changeset viewer.