You appear to be a bot. Output may be restricted
Description
Usage
WP_UnitTestCase::expectedDeprecated();
Parameters
Returns
voidSource
File name: oik-batch/tests/testcase.phpLines:
1 to 27 of 27
function expectedDeprecated() { $errors = array(); $not_caught_deprecated = array_diff( $this->expected_deprecated, $this->caught_deprecated ); foreach ( $not_caught_deprecated as $not_caught ) { $errors[] = "Failed to assert that $not_caught triggered a deprecated notice"; } $unexpected_deprecated = array_diff( $this->caught_deprecated, $this->expected_deprecated ); foreach ( $unexpected_deprecated as $unexpected ) { $errors[] = "Unexpected deprecated notice for $unexpected"; } $not_caught_doing_it_wrong = array_diff( $this->expected_doing_it_wrong, $this->caught_doing_it_wrong ); foreach ( $not_caught_doing_it_wrong as $not_caught ) { $errors[] = "Failed to assert that $not_caught triggered an incorrect usage notice"; } $unexpected_doing_it_wrong = array_diff( $this->caught_doing_it_wrong, $this->expected_doing_it_wrong ); foreach ( $unexpected_doing_it_wrong as $unexpected ) { $errors[] = "Unexpected incorrect usage notice for $unexpected"; } if ( ! empty( $errors ) ) { $this->fail( implode( "\n", $errors ) ); } }View on GitHub