Changeset 52010 for trunk/tests/phpunit/tests/option/transient.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/transient.php
r51568 r52010 14 14 } 15 15 16 function test_the_basics() {16 public function test_the_basics() { 17 17 $key = 'key1'; 18 18 $value = 'value1'; … … 30 30 } 31 31 32 function test_serialized_data() {32 public function test_serialized_data() { 33 33 $key = rand_str(); 34 34 $value = array( … … 49 49 * @ticket 22807 50 50 */ 51 function test_transient_data_with_timeout() {51 public function test_transient_data_with_timeout() { 52 52 $key = rand_str(); 53 53 $value = rand_str(); … … 70 70 * @ticket 22807 71 71 */ 72 function test_transient_add_timeout() {72 public function test_transient_add_timeout() { 73 73 $key = rand_str(); 74 74 $value = rand_str(); … … 93 93 * @ticket 30380 94 94 */ 95 function test_nonexistent_key_dont_delete_if_false() {95 public function test_nonexistent_key_dont_delete_if_false() { 96 96 // Create a bogus a transient. 97 97 $key = 'test_transient'; … … 121 121 * @ticket 30380 122 122 */ 123 function test_nonexistent_key_old_timeout() {123 public function test_nonexistent_key_old_timeout() { 124 124 // Create a transient. 125 125 $key = 'test_transient';
Note: See TracChangeset
for help on using the changeset viewer.