By andypost on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.5.x
Introduced in version:
8.5.3
Description:
As part of the PHPUnit Initiative the tests in the Menu UI module have been converted to use PHPUnit.
\Drupal\menu_ui\Tests\MenuWebTestBase have been deprecated. All test classes that extend this base class should be converted to use \Drupal\Tests\menu_ui\Traits\MenuUiTrait trait instead.
Method assertMenuLink() changed order of arguments - expected goes first now.
Before - assertMenuLink($menu_plugin_id, array $expected_item)
After - assertMenuLink(array $expected_item, $menu_plugin_id)
Impacts:
Module developers