From 6e0c9c69b764c1ba5c0ebbedf7a5845ef6bb61a0 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Fri, 19 Jul 2019 23:39:11 +0100 Subject: [PATCH] resourceloader: Move FilePath test to /tests/phpunit/unit Pure value object. No external dependencies. Change-Id: If4120ca302c2fab2a41880c32e164d36566ed9de --- .../includes/resourceloader/ResourceLoaderFilePathTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/phpunit/{ => unit}/includes/resourceloader/ResourceLoaderFilePathTest.php (90%) diff --git a/tests/phpunit/includes/resourceloader/ResourceLoaderFilePathTest.php b/tests/phpunit/unit/includes/resourceloader/ResourceLoaderFilePathTest.php similarity index 90% rename from tests/phpunit/includes/resourceloader/ResourceLoaderFilePathTest.php rename to tests/phpunit/unit/includes/resourceloader/ResourceLoaderFilePathTest.php index 1249ca593c..b1db38338c 100644 --- a/tests/phpunit/includes/resourceloader/ResourceLoaderFilePathTest.php +++ b/tests/phpunit/unit/includes/resourceloader/ResourceLoaderFilePathTest.php @@ -3,7 +3,7 @@ /** * @covers ResourceLoaderFilePath */ -class ResourceLoaderFilePathTest extends PHPUnit\Framework\TestCase { +class ResourceLoaderFilePathTest extends MediaWikiUnitTestCase { public function testConstructor() { $path = new ResourceLoaderFilePath( 'dummy/path', '/local', '/remote' ); -- 2.20.1