diff --git tests/phpunit/tests/link/themeFile.php tests/phpunit/tests/link/themeFile.php
index fe0dbcf..2af10cc 100644
|
|
|
class Test_Theme_File extends WP_UnitTestCase {
|
| 102 | 102 | |
| 103 | 103 | /** |
| 104 | 104 | * @ticket 18302 |
| | 105 | * @ticket 43663 |
| 105 | 106 | * |
| 106 | 107 | * @dataProvider data_theme_files |
| 107 | 108 | */ |
| 108 | | public function test_theme_file_uri_returns_valid_uri( $file, $expected_theme, $existence ) { |
| | 109 | public function test_theme_file_uri_returns_valid_uri( $file, $expected_theme, $existence ) { |
| | 110 | switch_theme( $expected_theme ); |
| | 111 | |
| 109 | 112 | $uri = get_theme_file_uri( $file ); |
| 110 | 113 | $parent_uri = get_parent_theme_file_uri( $file ); |
| 111 | 114 | |