Changeset 49025 for trunk/tests/phpunit/tests/ajax/Compression.php
- Timestamp:
- 09/21/2020 01:25:38 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/ajax/Compression.php
r48997 r49025 55 55 /** 56 56 * Fetch the test text (gzdeflate) 57 * 58 * @requires function gzdeflate 57 59 */ 58 60 public function test_gzdeflate() { 59 60 if ( ! function_exists( 'gzdeflate' ) ) {61 $this->fail( 'gzdeflate function not available' );62 }63 61 64 62 // Become an administrator. … … 82 80 /** 83 81 * Fetch the test text (gzencode) 82 * 83 * @requires function gzencode 84 84 */ 85 85 public function test_gzencode() { 86 87 if ( ! function_exists( 'gzencode' ) ) {88 $this->fail( 'gzencode function not available' );89 }90 86 91 87 // Become an administrator.
Note: See TracChangeset
for help on using the changeset viewer.