Changeset 50953 for trunk/tests/phpunit/tests/widgets.php
- Timestamp:
- 05/23/2021 08:50:44 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/widgets.php
r49203 r50953 24 24 function tearDown() { 25 25 global $wp_customize; 26 26 27 $wp_customize = null; 27 28 … … 37 38 38 39 $widget_class = 'WP_Widget_Search'; 40 39 41 register_widget( $widget_class ); 40 42 $this->assertArrayHasKey( $widget_class, $wp_widget_factory->widgets ); … … 53 55 function test_register_and_unregister_widget_instance() { 54 56 global $wp_widget_factory, $wp_registered_widgets; 57 55 58 $this->assertEmpty( $wp_widget_factory->widgets ); 56 59 $this->assertEmpty( $wp_registered_widgets ); … … 128 131 */ 129 132 function test_register_sidebars_single() { 130 131 133 global $wp_registered_sidebars; 132 134 … … 141 143 */ 142 144 function test_register_sidebars_multiple() { 143 144 145 global $wp_registered_sidebars; 145 146 … … 200 201 */ 201 202 function test_register_sidebar_with_string_id() { 202 203 203 global $wp_registered_sidebars; 204 204 … … 427 427 428 428 /** 429 * @ticket 44098 430 * @see WP_Widget::__construct() 431 * @dataProvider data_wp_widget_id_base 432 */ 433 function test_wp_widget_id_base( $expected, $widget_class ) { 434 require_once DIR_TESTDATA . '/widgets/custom-widget-classes.php'; 435 436 $widget = new $widget_class( '', 'Foo' ); 437 438 $this->assertSame( $expected, $widget->id_base ); 439 } 440 441 /** 442 * Data provider. 443 * 444 * Passes the expected `id_base` value and the class name. 445 * 446 * @since 5.8.0 447 * 448 * @return array { 449 * @type array { 450 * @type string $expected The expected `id_base` value to be returned. 451 * @type string $widget_class The widget class name for creating an instance. 452 * } 453 * } 454 */ 455 function data_wp_widget_id_base() { 456 return array( 457 array( 458 'search', 459 'WP_Widget_Search', 460 ), 461 array( 462 'test-sub-sub-namespaced_widget', 463 'Test\Sub\Sub\Namespaced_Widget', 464 ), 465 array( 466 'non_namespaced_widget', 467 'Non_Namespaced_Widget', 468 ), 469 ); 470 } 471 472 /** 429 473 * @see WP_Widget::get_field_name() 430 474 * @dataProvider data_wp_widget_get_field_name … … 451 495 */ 452 496 function data_wp_widget_get_field_name() { 453 454 497 return array( 455 498 array(
Note: See TracChangeset
for help on using the changeset viewer.