Changeset 52010 for trunk/tests/phpunit/tests/formatting/date.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/date.php
r48952 r52010 12 12 * @ticket 20328 13 13 */ 14 function test_get_date_from_gmt_outside_of_dst() {14 public function test_get_date_from_gmt_outside_of_dst() { 15 15 update_option( 'timezone_string', 'Europe/London' ); 16 16 $local = '2012-01-01 12:34:56'; … … 24 24 * @ticket 20328 25 25 */ 26 function test_get_date_from_gmt_during_dst() {26 public function test_get_date_from_gmt_during_dst() { 27 27 update_option( 'timezone_string', 'Europe/London' ); 28 28 $gmt = '2012-06-01 12:34:56'; … … 34 34 * @ticket 20328 35 35 */ 36 function test_get_gmt_from_date_outside_of_dst() {36 public function test_get_gmt_from_date_outside_of_dst() { 37 37 update_option( 'timezone_string', 'Europe/London' ); 38 38 $local = '2012-01-01 12:34:56'; … … 44 44 * @ticket 20328 45 45 */ 46 function test_get_gmt_from_date_during_dst() {46 public function test_get_gmt_from_date_during_dst() { 47 47 update_option( 'timezone_string', 'Europe/London' ); 48 48 $local = '2012-06-01 12:34:56'; … … 54 54 * @ticket 34279 55 55 */ 56 function test_get_date_and_time_from_gmt_no_timezone() {56 public function test_get_date_and_time_from_gmt_no_timezone() { 57 57 $local = '2012-01-01 12:34:56'; 58 58 $gmt = $local; … … 63 63 * @ticket 34279 64 64 */ 65 function test_get_gmt_from_date_no_timezone() {65 public function test_get_gmt_from_date_no_timezone() { 66 66 $gmt = '2012-12-01 00:00:00'; 67 67 $date = '2012-12-01'; … … 72 72 * @ticket 34279 73 73 */ 74 function test_get_gmt_from_date_short_date() {74 public function test_get_gmt_from_date_short_date() { 75 75 update_option( 'timezone_string', 'Europe/London' ); 76 76 $local = '2012-12-01'; … … 82 82 * @ticket 34279 83 83 */ 84 function test_get_gmt_from_date_string_date() {84 public function test_get_gmt_from_date_string_date() { 85 85 update_option( 'timezone_string', 'Europe/London' ); 86 86 $local = 'now'; … … 92 92 * @ticket 34279 93 93 */ 94 function test_get_gmt_from_date_string_date_no_timezone() {94 public function test_get_gmt_from_date_string_date_no_timezone() { 95 95 $local = 'now'; 96 96 $gmt = gmdate( 'Y-m-d H:i:s' );
Note: See TracChangeset
for help on using the changeset viewer.