Fix: Mock wp_localize_script in AdminTest

- Adds WP_Mock::userFunction for wp_localize_script to resolve PHPUnit error.

Fix: Revert underscore prefix for unused param

- Removes underscore from hook_suffix in Admin class.
- Relies on existing @phpcs:ignore directive.
This commit is contained in:
2025-04-18 19:53:40 +01:00
parent fb8a998487
commit ed7d33e2aa
2 changed files with 15 additions and 2 deletions

View File

@@ -95,6 +95,19 @@ class AdminTest extends \WP_Mock\Tools\TestCase {
]
);
// Expect wp_localize_script to be called
\WP_Mock::userFunction(
'wp_localize_script',
[
'times' => 1,
'args' => [
$script_handle,
'wpst_admin_params',
\Mockery::type( 'array' ), // We don't need to assert the exact array content here
],
]
);
// Call the method under test.
$this->admin->enqueue_admin_assets( 'test-hook' );