You appear to be a bot. Output may be restricted
Description
Usage
Tests_Hooks_DoAction::test_do_action_doesnt_change_value();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/hooks/doAction.php
Lines:
1 to 13 of 13
public function test_do_action_doesnt_change_value() { $this->hook = new WP_Hook(); $this->action_output = ''; $this->hook->add_filter( 'do_action_doesnt_change_value', array( $this, '_filter_do_action_doesnt_change_value1' ), 10, 1 ); $this->hook->add_filter( 'do_action_doesnt_change_value', array( $this, '_filter_do_action_doesnt_change_value2' ), 10, 1 ); $this->hook->add_filter( 'do_action_doesnt_change_value', array( $this, '_filter_do_action_doesnt_change_value3' ), 11, 1 ); $this->hook->do_action( array( 'a' ) ); $this->assertSame( 'a1-b1b3-a2a3', $this->action_output ); }