Changeset 51792
- Timestamp:
- 09/09/2021 10:43:49 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/functions/anonymization.php
r51415 r51792 27 27 * @ticket 43545 28 28 * 29 * @covers ::wp_privacy_anonymize_ip 30 * 29 31 * @param string $raw_ip Raw IP address. 30 32 * @param string $expected_result Expected result. … … 58 60 ), 59 61 array( 62 false, 63 '0.0.0.0', 64 ), 65 array( 66 true, 67 '0.0.0.0', 68 ), 69 array( 70 0, 71 '0.0.0.0', 72 ), 73 array( 74 1, 75 '0.0.0.0', 76 ), 77 array( 60 78 '', 61 79 '0.0.0.0', … … 166 184 * @requires function inet_ntop 167 185 * @requires function inet_pton 186 * 187 * @covers ::wp_privacy_anonymize_ip 168 188 * 169 189 * @param string $raw_ip Raw IP address.
Note: See TracChangeset
for help on using the changeset viewer.