From c3dcaf16c16a9abd246fd379bd54ff1daedf9938 Mon Sep 17 00:00:00 2001 From: Nilambar Sharma Date: Thu, 9 Jan 2025 15:40:37 +0545 Subject: [PATCH] Update test methods name --- .../Checks/Plugin_Header_Fields_Check_Tests.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/phpunit/tests/Checker/Checks/Plugin_Header_Fields_Check_Tests.php b/tests/phpunit/tests/Checker/Checks/Plugin_Header_Fields_Check_Tests.php index f3cbb4d1..da9d2e2b 100644 --- a/tests/phpunit/tests/Checker/Checks/Plugin_Header_Fields_Check_Tests.php +++ b/tests/phpunit/tests/Checker/Checks/Plugin_Header_Fields_Check_Tests.php @@ -123,6 +123,8 @@ public function test_run_with_errors_requires_at_least_latest_plus_two_version() $errors = $check_result->get_errors(); + delete_transient( 'wp_plugin_check_latest_version_info' ); + $this->assertNotEmpty( $errors ); $filtered_items = wp_list_filter( $errors['load.php'][0][0], array( 'code' => 'plugin_header_nonexistent_requires_wp' ) ); @@ -130,11 +132,9 @@ public function test_run_with_errors_requires_at_least_latest_plus_two_version() $this->assertCount( 1, $filtered_items ); $this->assertStringContainsString( 'Requires at least: 6.0', $filtered_items[0]['message'] ); $this->assertStringContainsString( 'This version of WordPress does not exist (yet).', $filtered_items[0]['message'] ); - - delete_transient( 'wp_plugin_check_latest_version_info' ); } - public function test_run_with_errors_requires_at_least_latest_plus_one_version() { + public function test_run_without_errors_requires_at_least_latest_plus_one_version() { // Target plugin has "6.0" in plugin header. set_transient( 'wp_plugin_check_latest_version_info', array( 'current' => '5.9.1' ) ); @@ -146,12 +146,12 @@ public function test_run_with_errors_requires_at_least_latest_plus_one_version() $errors = $check_result->get_errors(); - $this->assertEmpty( $errors ); - delete_transient( 'wp_plugin_check_latest_version_info' ); + + $this->assertEmpty( $errors ); } - public function test_run_with_errors_requires_at_least_latest_version() { + public function test_run_without_errors_requires_at_least_latest_version() { // Target plugin has "6.0" in plugin header. set_transient( 'wp_plugin_check_latest_version_info', array( 'current' => '6.0.1' ) ); @@ -163,8 +163,8 @@ public function test_run_with_errors_requires_at_least_latest_version() { $errors = $check_result->get_errors(); - $this->assertEmpty( $errors ); - delete_transient( 'wp_plugin_check_latest_version_info' ); + + $this->assertEmpty( $errors ); } }