Changeset 55562 for trunk/tests/phpunit/tests/formatting/date.php
- Timestamp:
- 03/19/2023 12:03:30 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/date.php
r54230 r55562 131 131 * @ticket 31809 132 132 * 133 * @dataProvider timezone_provider134 * 135 * @covers ::get_gmt_from_date 136 */ 137 public function test_g mt_from_date_correct_time( $timezone_string, $gmt_offset ) {133 * @dataProvider data_timezone_provider 134 * 135 * @covers ::get_gmt_from_date 136 */ 137 public function test_get_gmt_from_date_correct_time( $timezone_string, $gmt_offset ) { 138 138 update_option( 'timezone_string', $timezone_string ); 139 139 update_option( 'gmt_offset', $gmt_offset ); … … 149 149 * @ticket 31809 150 150 * 151 * @dataProvider timezone_provider152 * 153 * @covers ::get_date_from_gmt 154 */ 155 public function test_ date_from_gmt_correct_time( $timezone_string, $gmt_offset ) {151 * @dataProvider data_timezone_provider 152 * 153 * @covers ::get_date_from_gmt 154 */ 155 public function test_get_date_from_gmt_correct_time( $timezone_string, $gmt_offset ) { 156 156 update_option( 'timezone_string', $timezone_string ); 157 157 update_option( 'gmt_offset', $gmt_offset ); … … 167 167 * @ticket 31809 168 168 * 169 * @dataProvider timezone_provider169 * @dataProvider data_timezone_provider 170 170 * 171 171 * @covers ::iso8601_to_datetime … … 231 231 * @return array 232 232 */ 233 public function timezone_provider() {233 public function data_timezone_provider() { 234 234 return array( 235 235 array(
Note: See TracChangeset
for help on using the changeset viewer.