expectException( 'WPDieException' ); $this->expectExceptionMessage( 'The link you followed has expired.' ); $this->expectExceptionCode( 403 ); wp_nonce_ays( 'random_string' ); } /** * @ticket 53882 */ public function test_wp_nonce_ays_log_out() { $this->expectException( 'WPDieException' ); $this->expectExceptionMessageMatches( '#You are attempting to log out of Test Blog

Do you really want to log out\?#m' ); $this->expectExceptionCode( 403 ); wp_nonce_ays( 'log-out' ); } }