- Timestamp:
- 10/30/2022 01:05:06 AM (3 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/ajax/wpAjaxWpCompressionTest.php
r54721 r54722 9 9 * Testing Ajax compression test functionality. 10 10 * 11 * @package WordPress11 * @package WordPress 12 12 * @subpackage UnitTests 13 * @since 3.4.0 14 * @group ajax 13 * @since 3.4.0 14 * 15 * @group ajax 16 * 17 * @covers ::wp_ajax_wp_compression_test 15 18 */ 16 class Tests_Ajax_ CompressionTest extends WP_Ajax_UnitTestCase {19 class Tests_Ajax_wpAjaxWpCompressionTest extends WP_Ajax_UnitTestCase { 17 20 18 21 /** 19 22 * Test as a logged out user 20 *21 * @covers ::wp_ajax_wp_compression_test22 23 */ 23 24 public function test_logged_out() { … … 35 36 /** 36 37 * Fetch the test text 37 *38 * @covers ::wp_ajax_wp_compression_test39 38 */ 40 39 public function test_text() { … … 61 60 * 62 61 * @requires function gzdeflate 63 *64 * @covers ::wp_ajax_wp_compression_test65 62 */ 66 63 public function test_gzdeflate() { … … 88 85 * 89 86 * @requires function gzencode 90 *91 * @covers ::wp_ajax_wp_compression_test92 87 */ 93 88 public function test_gzencode() { … … 113 108 /** 114 109 * Fetch the test text (unknown encoding) 115 *116 * @covers ::wp_ajax_wp_compression_test117 110 */ 118 111 public function test_unknown_encoding() { … … 133 126 /** 134 127 * Set the 'can_compress_scripts' site option to true 135 *136 * @covers ::wp_ajax_wp_compression_test137 128 */ 138 129 public function test_set_yes() { … … 173 164 /** 174 165 * Set the 'can_compress_scripts' site option to false 175 *176 * @covers ::wp_ajax_wp_compression_test177 166 */ 178 167 public function test_set_no() {
Note: See TracChangeset
for help on using the changeset viewer.