Changeset 55562 for trunk/tests/phpunit/tests/formatting/urlencodeDeep.php
- Timestamp:
- 03/19/2023 12:03:30 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/urlencodeDeep.php
r53562 r55562 12 12 * Data Provider 13 13 */ 14 public function data_ test_values() {14 public function data_urlencode_deep() { 15 15 return array( 16 16 array( 'qwerty123456', 'qwerty123456' ), … … 25 25 * Validate the urlencode_deep function pair by pair 26 26 * 27 * @dataProvider data_ test_values27 * @dataProvider data_urlencode_deep 28 28 * 29 29 * @param string $actual … … 38 38 */ 39 39 public function test_urlencode_deep_should_encode_all_values_in_array() { 40 $data = $this->data_ test_values();40 $data = $this->data_urlencode_deep(); 41 41 42 42 $actual = wp_list_pluck( $data, 0 );
Note: See TracChangeset
for help on using the changeset viewer.