<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[53916] trunk/tests/phpunit/tests: Code Modernization: Remove dynamic properties in theme tests.</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { white-space: pre-line; overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta" style="font-size: 105%">
<dt style="float: left; width: 6em; font-weight: bold">Revision</dt> <dd><a style="font-weight: bold" href="https://core.trac.wordpress.org/changeset/53916">53916</a><script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","description":"Review this Commit","action":{"@type":"ViewAction","url":"https://core.trac.wordpress.org/changeset/53916","name":"Review Commit"}}</script></dd>
<dt style="float: left; width: 6em; font-weight: bold">Author</dt> <dd>SergeyBiryukov</dd>
<dt style="float: left; width: 6em; font-weight: bold">Date</dt> <dd>2022-08-21 16:55:18 +0000 (Sun, 21 Aug 2022)</dd>
</dl>

<pre style='padding-left: 1em; margin: 2em 0; border-left: 2px solid #ccc; line-height: 1.25; font-size: 105%; font-family: sans-serif'>Code Modernization: Remove dynamic properties in theme tests.

Dynamic (non-explicitly declared) properties are deprecated as of PHP 8.2 and are expected to become a fatal error in PHP 9.0.

In this particular group of test files, the test classes contain a `set_up()` method which sets a few dynamic (not explicitly declared) properties.

For those properties which were set using a function call or variable access, the property has been explicitly declared on the class now.

For those properties which were set using a constant scalar expression and for which the value is not changed by any of the tests, the property setting has been removed in favor of declaring a class constant.

Includes removing one unused dynamic property declaration: `$this->queries` in `Test_Block_Supports_Layout`, which appears to be a copy/paste from `Tests_Theme_wpThemeJsonResolver`.

Follow-up to [40/tests], [260/tests], [598/tests], <a href="https://core.trac.wordpress.org/changeset/50960">[50960]</a>, <a href="https://core.trac.wordpress.org/changeset/52675">[52675]</a>, <a href="https://core.trac.wordpress.org/changeset/53085">[53085]</a>, <a href="https://core.trac.wordpress.org/changeset/53557">[53557]</a>, <a href="https://core.trac.wordpress.org/changeset/53558">[53558]</a>, <a href="https://core.trac.wordpress.org/changeset/53850">[53850]</a>, <a href="https://core.trac.wordpress.org/changeset/53851">[53851]</a>, <a href="https://core.trac.wordpress.org/changeset/53852">[53852]</a>, <a href="https://core.trac.wordpress.org/changeset/53853">[53853]</a>, <a href="https://core.trac.wordpress.org/changeset/53854">[53854]</a>, <a href="https://core.trac.wordpress.org/changeset/53856">[53856]</a>.

Props jrf.
See <a href="https://core.trac.wordpress.org/ticket/56033">#56033</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunktestsphpunittestsadminincludesThemephp">trunk/tests/phpunit/tests/admin/includesTheme.php</a></li>
<li><a href="#trunktestsphpunittestsblocksupportslayoutphp">trunk/tests/phpunit/tests/block-supports/layout.php</a></li>
<li><a href="#trunktestsphpunitteststhemethemeDirphp">trunk/tests/phpunit/tests/theme/themeDir.php</a></li>
<li><a href="#trunktestsphpunitteststhemewpGetGlobalStylesheetphp">trunk/tests/phpunit/tests/theme/wpGetGlobalStylesheet.php</a></li>
<li><a href="#trunktestsphpunitteststhemewpThemephp">trunk/tests/phpunit/tests/theme/wpTheme.php</a></li>
<li><a href="#trunktestsphpunitteststhemewpThemeJsonResolverphp">trunk/tests/phpunit/tests/theme/wpThemeJsonResolver.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunktestsphpunittestsadminincludesThemephp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/admin/includesTheme.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/admin/includesTheme.php 2022-08-20 00:30:54 UTC (rev 53915)
+++ trunk/tests/phpunit/tests/admin/includesTheme.php   2022-08-21 16:55:18 UTC (rev 53916)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -4,12 +4,25 @@
</span><span class="cx" style="display: block; padding: 0 10px">  */
</span><span class="cx" style="display: block; padding: 0 10px"> class Tests_Admin_IncludesTheme extends WP_UnitTestCase {
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+        /**
+        * Theme root directory.
+        *
+        * @var string
+        */
+       const THEME_ROOT = DIR_TESTDATA . '/themedir1';
+
+       /**
+        * Original theme directory.
+        *
+        * @var string
+        */
+       private $orig_theme_dir;
+
</ins><span class="cx" style="display: block; padding: 0 10px">         public function set_up() {
</span><span class="cx" style="display: block; padding: 0 10px">                parent::set_up();
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->theme_root = DIR_TESTDATA . '/themedir1';
</del><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                $this->orig_theme_dir            = $GLOBALS['wp_theme_directories'];
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $GLOBALS['wp_theme_directories'] = array( WP_CONTENT_DIR . '/themes', $this->theme_root );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $GLOBALS['wp_theme_directories'] = array( WP_CONTENT_DIR . '/themes', self::THEME_ROOT );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                add_filter( 'theme_root', array( $this, 'filter_theme_root' ) );
</span><span class="cx" style="display: block; padding: 0 10px">                add_filter( 'stylesheet_root', array( $this, 'filter_theme_root' ) );
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -33,7 +46,7 @@
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        // Replace the normal theme root directory with our premade test directory.
</span><span class="cx" style="display: block; padding: 0 10px">        public function filter_theme_root( $dir ) {
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                return $this->theme_root;
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         return self::THEME_ROOT;
</ins><span class="cx" style="display: block; padding: 0 10px">         }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        /**
</span></span></pre></div>
<a id="trunktestsphpunittestsblocksupportslayoutphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/block-supports/layout.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/block-supports/layout.php       2022-08-20 00:30:54 UTC (rev 53915)
+++ trunk/tests/phpunit/tests/block-supports/layout.php 2022-08-21 16:55:18 UTC (rev 53916)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -17,6 +17,21 @@
</span><span class="cx" style="display: block; padding: 0 10px">  * @covers ::wp_restore_image_outer_container
</span><span class="cx" style="display: block; padding: 0 10px">  */
</span><span class="cx" style="display: block; padding: 0 10px"> class Test_Block_Supports_Layout extends WP_UnitTestCase {
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+
+       /**
+        * Theme root directory.
+        *
+        * @var string
+        */
+       private $theme_root;
+
+       /**
+        * Original theme directory.
+        *
+        * @var string
+        */
+       private $orig_theme_dir;
+
</ins><span class="cx" style="display: block; padding: 0 10px">         function set_up() {
</span><span class="cx" style="display: block; padding: 0 10px">                parent::set_up();
</span><span class="cx" style="display: block; padding: 0 10px">                $this->theme_root     = realpath( DIR_TESTDATA . '/themedir1' );
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -30,7 +45,6 @@
</span><span class="cx" style="display: block; padding: 0 10px">                add_filter( 'stylesheet_root', array( $this, 'filter_set_theme_root' ) );
</span><span class="cx" style="display: block; padding: 0 10px">                add_filter( 'template_root', array( $this, 'filter_set_theme_root' ) );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->queries = array();
</del><span class="cx" style="display: block; padding: 0 10px">                 // Clear caches.
</span><span class="cx" style="display: block; padding: 0 10px">                wp_clean_themes_cache();
</span><span class="cx" style="display: block; padding: 0 10px">                unset( $GLOBALS['wp_themes'] );
</span></span></pre></div>
<a id="trunktestsphpunitteststhemethemeDirphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/theme/themeDir.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/theme/themeDir.php      2022-08-20 00:30:54 UTC (rev 53915)
+++ trunk/tests/phpunit/tests/theme/themeDir.php        2022-08-21 16:55:18 UTC (rev 53916)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -7,14 +7,27 @@
</span><span class="cx" style="display: block; padding: 0 10px">  */
</span><span class="cx" style="display: block; padding: 0 10px"> class Tests_Theme_ThemeDir extends WP_UnitTestCase {
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+        /**
+        * Theme root directory.
+        *
+        * @var string
+        */
+       const THEME_ROOT = DIR_TESTDATA . '/themedir1';
+
+       /**
+        * Original theme directory.
+        *
+        * @var string
+        */
+       private $orig_theme_dir;
+
</ins><span class="cx" style="display: block; padding: 0 10px">         public function set_up() {
</span><span class="cx" style="display: block; padding: 0 10px">                parent::set_up();
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->theme_root = DIR_TESTDATA . '/themedir1';
</del><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                $this->orig_theme_dir = $GLOBALS['wp_theme_directories'];
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                // /themes is necessary as theme.php functions assume /themes is the root if there is only one root.
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $GLOBALS['wp_theme_directories'] = array( WP_CONTENT_DIR . '/themes', $this->theme_root );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $GLOBALS['wp_theme_directories'] = array( WP_CONTENT_DIR . '/themes', self::THEME_ROOT );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                add_filter( 'theme_root', array( $this, 'filter_theme_root' ) );
</span><span class="cx" style="display: block; padding: 0 10px">                add_filter( 'stylesheet_root', array( $this, 'filter_theme_root' ) );
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -33,7 +46,7 @@
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        // Replace the normal theme root directory with our premade test directory.
</span><span class="cx" style="display: block; padding: 0 10px">        public function filter_theme_root( $dir ) {
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                return $this->theme_root;
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         return self::THEME_ROOT;
</ins><span class="cx" style="display: block; padding: 0 10px">         }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        /**
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -57,12 +70,12 @@
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( 'default', $theme['Template'] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( 'default', $theme['Stylesheet'] );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertContains( $this->theme_root . '/default/functions.php', $theme['Template Files'] );
-               $this->assertContains( $this->theme_root . '/default/index.php', $theme['Template Files'] );
-               $this->assertContains( $this->theme_root . '/default/style.css', $theme['Stylesheet Files'] );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertContains( self::THEME_ROOT . '/default/functions.php', $theme['Template Files'] );
+               $this->assertContains( self::THEME_ROOT . '/default/index.php', $theme['Template Files'] );
+               $this->assertContains( self::THEME_ROOT . '/default/style.css', $theme['Stylesheet Files'] );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertSame( $this->theme_root . '/default', $theme['Template Dir'] );
-               $this->assertSame( $this->theme_root . '/default', $theme['Stylesheet Dir'] );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertSame( self::THEME_ROOT . '/default', $theme['Template Dir'] );
+               $this->assertSame( self::THEME_ROOT . '/default', $theme['Stylesheet Dir'] );
</ins><span class="cx" style="display: block; padding: 0 10px">                 $this->assertSame( 'publish', $theme['Status'] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( '', $theme['Parent Theme'] );
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -88,15 +101,15 @@
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                $template_files = $theme['Template Files'];
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertSame( $this->theme_root . '/sandbox/functions.php', reset( $template_files ) );
-               $this->assertSame( $this->theme_root . '/sandbox/index.php', next( $template_files ) );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertSame( self::THEME_ROOT . '/sandbox/functions.php', reset( $template_files ) );
+               $this->assertSame( self::THEME_ROOT . '/sandbox/index.php', next( $template_files ) );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                $stylesheet_files = $theme['Stylesheet Files'];
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertSame( $this->theme_root . '/sandbox/style.css', reset( $stylesheet_files ) );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertSame( self::THEME_ROOT . '/sandbox/style.css', reset( $stylesheet_files ) );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertSame( $this->theme_root . '/sandbox', $theme['Template Dir'] );
-               $this->assertSame( $this->theme_root . '/sandbox', $theme['Stylesheet Dir'] );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertSame( self::THEME_ROOT . '/sandbox', $theme['Template Dir'] );
+               $this->assertSame( self::THEME_ROOT . '/sandbox', $theme['Stylesheet Dir'] );
</ins><span class="cx" style="display: block; padding: 0 10px">                 $this->assertSame( 'publish', $theme['Status'] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( '', $theme['Parent Theme'] );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -122,13 +135,13 @@
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( '1.0', $theme['Version'] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( 'sandbox', $theme['Template'] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( 'stylesheetonly', $theme['Stylesheet'] );
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertContains( $this->theme_root . '/sandbox/functions.php', $theme['Template Files'] );
-               $this->assertContains( $this->theme_root . '/sandbox/index.php', $theme['Template Files'] );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertContains( self::THEME_ROOT . '/sandbox/functions.php', $theme['Template Files'] );
+               $this->assertContains( self::THEME_ROOT . '/sandbox/index.php', $theme['Template Files'] );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertContains( $this->theme_root . '/stylesheetonly/style.css', $theme['Stylesheet Files'] );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertContains( self::THEME_ROOT . '/stylesheetonly/style.css', $theme['Stylesheet Files'] );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertSame( $this->theme_root . '/sandbox', $theme['Template Dir'] );
-               $this->assertSame( $this->theme_root . '/stylesheetonly', $theme['Stylesheet Dir'] );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertSame( self::THEME_ROOT . '/sandbox', $theme['Template Dir'] );
+               $this->assertSame( self::THEME_ROOT . '/stylesheetonly', $theme['Stylesheet Dir'] );
</ins><span class="cx" style="display: block; padding: 0 10px">                 $this->assertSame( 'publish', $theme['Status'] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( 'Sandbox', $theme['Parent Theme'] );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -142,7 +155,7 @@
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                // Ignore themes in the default /themes directory.
</span><span class="cx" style="display: block; padding: 0 10px">                foreach ( $themes as $theme_name => $theme ) {
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                        if ( $theme->get_theme_root() !== $this->theme_root ) {
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+                 if ( $theme->get_theme_root() !== self::THEME_ROOT ) {
</ins><span class="cx" style="display: block; padding: 0 10px">                                 unset( $themes[ $theme_name ] );
</span><span class="cx" style="display: block; padding: 0 10px">                        }
</span><span class="cx" style="display: block; padding: 0 10px">                }
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -198,7 +211,7 @@
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        public function test_wp_get_theme_with_non_default_theme_root() {
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertFalse( wp_get_theme( 'sandbox', $this->theme_root )->errors() );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertFalse( wp_get_theme( 'sandbox', self::THEME_ROOT )->errors() );
</ins><span class="cx" style="display: block; padding: 0 10px">                 $this->assertFalse( wp_get_theme( 'sandbox' )->errors() );
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -212,7 +225,7 @@
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertNotEmpty( $theme );
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                $templates = $theme['Template Files'];
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $this->assertContains( $this->theme_root . '/page-templates/template-top-level.php', $templates );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $this->assertContains( self::THEME_ROOT . '/page-templates/template-top-level.php', $templates );
</ins><span class="cx" style="display: block; padding: 0 10px">         }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        /**
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -238,7 +251,7 @@
</span><span class="cx" style="display: block; padding: 0 10px">         * @expectedDeprecated get_theme_data
</span><span class="cx" style="display: block; padding: 0 10px">         */
</span><span class="cx" style="display: block; padding: 0 10px">        public function test_get_theme_data_subdir() {
</span><del style="background-color: #fdd; text-decoration:none; display:block; padding: 0 10px">-                $theme_data = get_theme_data( $this->theme_root . '/subdir/theme2/style.css' );
</del><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         $theme_data = get_theme_data( self::THEME_ROOT . '/subdir/theme2/style.css' );
</ins><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( 'My Subdir Theme', $theme_data['Name'] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( 'http://example.org/', $theme_data['URI'] );
</span></span></pre></div>
<a id="trunktestsphpunitteststhemewpGetGlobalStylesheetphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/theme/wpGetGlobalStylesheet.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/theme/wpGetGlobalStylesheet.php 2022-08-20 00:30:54 UTC (rev 53915)
+++ trunk/tests/phpunit/tests/theme/wpGetGlobalStylesheet.php   2022-08-21 16:55:18 UTC (rev 53916)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -7,6 +7,20 @@
</span><span class="cx" style="display: block; padding: 0 10px">  */
</span><span class="cx" style="display: block; padding: 0 10px"> class Tests_Theme_wpGetGlobalStylesheet extends WP_UnitTestCase {
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+        /**
+        * Theme root directory.
+        *
+        * @var string
+        */
+       private $theme_root;
+
+       /**
+        * Original theme directory.
+        *
+        * @var string
+        */
+       private $orig_theme_dir;
+
</ins><span class="cx" style="display: block; padding: 0 10px">         public function set_up() {
</span><span class="cx" style="display: block; padding: 0 10px">                parent::set_up();
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span></span></pre></div>
<a id="trunktestsphpunitteststhemewpThemephp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/theme/wpTheme.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/theme/wpTheme.php       2022-08-20 00:30:54 UTC (rev 53915)
+++ trunk/tests/phpunit/tests/theme/wpTheme.php 2022-08-21 16:55:18 UTC (rev 53916)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -10,6 +10,20 @@
</span><span class="cx" style="display: block; padding: 0 10px">  */
</span><span class="cx" style="display: block; padding: 0 10px"> class Tests_Theme_wpTheme extends WP_UnitTestCase {
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+        /**
+        * Theme root directory.
+        *
+        * @var string
+        */
+       private $theme_root;
+
+       /**
+        * Original theme directory.
+        *
+        * @var string
+        */
+       private $orig_theme_dir;
+
</ins><span class="cx" style="display: block; padding: 0 10px">         public function set_up() {
</span><span class="cx" style="display: block; padding: 0 10px">                parent::set_up();
</span><span class="cx" style="display: block; padding: 0 10px">                $this->theme_root = realpath( DIR_TESTDATA . '/themedir1' );
</span></span></pre></div>
<a id="trunktestsphpunitteststhemewpThemeJsonResolverphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/theme/wpThemeJsonResolver.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/theme/wpThemeJsonResolver.php   2022-08-20 00:30:54 UTC (rev 53915)
+++ trunk/tests/phpunit/tests/theme/wpThemeJsonResolver.php     2022-08-21 16:55:18 UTC (rev 53916)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -12,6 +12,27 @@
</span><span class="cx" style="display: block; padding: 0 10px">  */
</span><span class="cx" style="display: block; padding: 0 10px"> class Tests_Theme_wpThemeJsonResolver extends WP_UnitTestCase {
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+        /**
+        * Theme root directory.
+        *
+        * @var string
+        */
+       private $theme_root;
+
+       /**
+        * Original theme directory.
+        *
+        * @var string
+        */
+       private $orig_theme_dir;
+
+       /**
+        * Queries.
+        *
+        * @var array
+        */
+       private $queries = array();
+
</ins><span class="cx" style="display: block; padding: 0 10px">         public function set_up() {
</span><span class="cx" style="display: block; padding: 0 10px">                parent::set_up();
</span><span class="cx" style="display: block; padding: 0 10px">                $this->theme_root = realpath( DIR_TESTDATA . '/themedir1' );
</span></span></pre>
</div>
</div>

</body>
</html>