mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-10 15:44:29 +00:00
Tests: Clean up skipping conditions and requirements for various tests.
This improves the consistency of test skipping and ensures that: * The `@requires` annotations use the right condition and format, and are on the right level (class vs. function). * Inline conditions with a `markTestSkipped()` call are only used when annotations cannot be used. * All `markTestSkipped()` calls contain a verbose explanation of why the test is being skipped. Props jrf, hellofromTonya. Fixes #53009. git-svn-id: https://develop.svn.wordpress.org/trunk@51415 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -251,7 +251,7 @@ class Tests_Cache extends WP_UnitTestCase {
|
||||
|
||||
function test_switch_to_blog() {
|
||||
if ( ! method_exists( $this->cache, 'switch_to_blog' ) ) {
|
||||
return;
|
||||
$this->markTestSkipped( 'This test requires a switch_to_blog() method on the cache object.' );
|
||||
}
|
||||
|
||||
$key = __FUNCTION__;
|
||||
|
||||
Reference in New Issue
Block a user