Changeset 55562 for trunk/tests/phpunit/tests/formatting/escXml.php
- Timestamp:
- 03/19/2023 12:03:30 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/escXml.php
r53562 r55562 10 10 * Test basic escaping 11 11 * 12 * @dataProvider _test_esc_xml_basics_dataprovider12 * @dataProvider data_esc_xml_basics 13 13 * 14 14 * @param string $source The source string to be escaped. … … 28 28 * } 29 29 */ 30 public function _test_esc_xml_basics_dataprovider() {30 public function data_esc_xml_basics() { 31 31 return array( 32 32 // Simple string. … … 85 85 * Test that CDATA Sections are not escaped. 86 86 * 87 * @dataProvider _test_ignores_cdata_sections_dataprovider87 * @dataProvider data_ignores_cdata_sections 88 88 * 89 89 * @param string $source The source string to be escaped. … … 103 103 * } 104 104 */ 105 public function _test_ignores_cdata_sections_dataprovider() {105 public function data_ignores_cdata_sections() { 106 106 return array( 107 107 // basic CDATA Section containing chars that would otherwise be escaped if not in a CDATA Section
Note: See TracChangeset
for help on using the changeset viewer.