Changeset 53865 for trunk/tests/phpunit/tests/option/transient.php
- Timestamp:
- 08/08/2022 11:33:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/transient.php
r53807 r53865 14 14 } 15 15 16 /** 17 * @covers ::get_transient 18 * @covers ::set_transient 19 * @covers ::delete_transient 20 */ 16 21 public function test_the_basics() { 17 22 $key = 'key1'; … … 30 35 } 31 36 37 /** 38 * @covers ::get_transient 39 * @covers ::set_transient 40 * @covers ::delete_transient 41 */ 32 42 public function test_serialized_data() { 33 43 $key = rand_str(); … … 48 58 /** 49 59 * @ticket 22807 60 * 61 * @covers ::get_option 62 * @covers ::set_transient 63 * @covers ::update_option 50 64 */ 51 65 public function test_transient_data_with_timeout() { … … 69 83 /** 70 84 * @ticket 22807 85 * 86 * @covers ::set_transient 87 * @covers ::get_transient 88 * @covers ::get_option 89 * @covers ::update_option 71 90 */ 72 91 public function test_transient_add_timeout() { … … 92 111 * 93 112 * @ticket 30380 113 * 114 * @covers ::set_transient 115 * @covers ::get_transient 94 116 */ 95 117 public function test_nonexistent_key_dont_delete_if_false() { … … 120 142 /** 121 143 * @ticket 30380 144 * 145 * @covers ::set_transient 146 * @covers ::get_transient 122 147 */ 123 148 public function test_nonexistent_key_old_timeout() {
Note: See TracChangeset
for help on using the changeset viewer.