Index: branches/5.2.x/tools/build/inc/phpunit.xml =================================================================== diff -u -r16761 -r16822 --- branches/5.2.x/tools/build/inc/phpunit.xml (.../phpunit.xml) (revision 16761) +++ branches/5.2.x/tools/build/inc/phpunit.xml (.../phpunit.xml) (revision 16822) @@ -1,46 +1,42 @@ + + - - ../../../core/tests - ../../../modules/*/tests - ../../../core/tests/unit + + ../../../core/tests/Unit + ../../../modules/*/tests/Unit - - ../../../modules/custom/tests + + ../../../core/tests/Functional + ../../../modules/*/tests/Functional - - - - - - - - ../../.. + + ../../../core/* + ../../../modules/* - ../../../blog ../../../modules/mpdf ../../../core/editor ../../../core/ckeditor - ../../../system - ../../../vendor ../../../core/tests ../../../modules/*/tests Index: branches/5.2.x/tools/build/build_all.xml =================================================================== diff -u -r16783 -r16822 --- branches/5.2.x/tools/build/build_all.xml (.../build_all.xml) (revision 16783) +++ branches/5.2.x/tools/build/build_all.xml (.../build_all.xml) (revision 16822) @@ -1,11 +1,14 @@ + + + Index: branches/5.2.x/composer.json =================================================================== diff -u -r16792 -r16822 --- branches/5.2.x/composer.json (.../composer.json) (revision 16792) +++ branches/5.2.x/composer.json (.../composer.json) (revision 16822) @@ -9,7 +9,7 @@ "require-dev": { "behat/mink": "^1.7", "aik099/phpunit-mink": "^2.4", - "yoast/phpunit-polyfills": "^1.1", + "yoast/phpunit-polyfills": "^2.0", "qa-tools/qa-tools": "^1.2", "phpspec/prophecy": "^1.10", "aik099/coding-standard": "dev-in-portal" Index: branches/5.2.x/tools/build/targets/common.xml =================================================================== diff -u -r16821 -r16822 --- branches/5.2.x/tools/build/targets/common.xml (.../common.xml) (revision 16821) +++ branches/5.2.x/tools/build/targets/common.xml (.../common.xml) (revision 16822) @@ -31,7 +31,7 @@ - + @@ -51,7 +51,7 @@ Make sure that our code is clean and functional. --> - + + - - ../../../core/tests - ../../../modules/custom/tests - ../../../core/tests/unit + + ../../../modules/custom/tests/Unit + + ../../../modules/custom/tests/Functional + - - - - - - - + ../../../modules/custom - ../../../blog ../../../modules/mpdf - ../../../core/editor - ../../../core/ckeditor - ../../../system - ../../../vendor - - ../../../core/tests ../../../modules/*/tests - - ../../../core/kernel/tests/bootstrap.php Index: branches/5.2.x/tools/build/build_custom.xml =================================================================== diff -u -r16783 -r16822 --- branches/5.2.x/tools/build/build_custom.xml (.../build_custom.xml) (revision 16783) +++ branches/5.2.x/tools/build/build_custom.xml (.../build_custom.xml) (revision 16822) @@ -1,13 +1,16 @@ + + + Index: branches/5.2.x/core/tests/Functional/AbstractBrowserTestCase.php =================================================================== diff -u -r16761 -r16822 --- branches/5.2.x/core/tests/Functional/AbstractBrowserTestCase.php (.../AbstractBrowserTestCase.php) (revision 16761) +++ branches/5.2.x/core/tests/Functional/AbstractBrowserTestCase.php (.../Functional/AbstractBrowserTestCase.php) (revision 16822) @@ -1,6 +1,6 @@ $browser_configuration ) { if ( !isset($browser_configuration['alias']) && !isset($browser_configuration['baseUrl']) ) { $cache[$alias_name]['baseUrl'] = $this->Application->BaseURL(); } } + + self::$browserAliases = $cache; } - return $cache; + return self::$browserAliases; } } Index: branches/5.2.x/tools/build/build.properties.dist =================================================================== diff -u -r16820 -r16822 --- branches/5.2.x/tools/build/build.properties.dist (.../build.properties.dist) (revision 16820) +++ branches/5.2.x/tools/build/build.properties.dist (.../build.properties.dist) (revision 16822) @@ -16,3 +16,5 @@ db.collation= db.tableprefix= db.charset= + +phpunit.testsuite= Fisheye: Tag 16822 refers to a dead (removed) revision in file `branches/5.2.x/core/tests/AbstractBrowserTestCase.php'. Fisheye: No comparison available. Pass `N' to diff? Index: branches/5.2.x/core/kernel/application.php =================================================================== diff -u -r16797 -r16822 --- branches/5.2.x/core/kernel/application.php (.../application.php) (revision 16797) +++ branches/5.2.x/core/kernel/application.php (.../application.php) (revision 16822) @@ -1,6 +1,6 @@ registerClass('Page', KERNEL_PATH . '/tests/Page/Page.php'); $this->registerClass('QAToolsUrlBuilder', KERNEL_PATH . '/tests/Url/QAToolsUrlBuilder.php'); $this->registerClass('QAToolsUrlFactory', KERNEL_PATH . '/tests/Url/QAToolsUrlFactory.php'); - $this->registerClass('AbstractTestCase', KERNEL_PATH . '/../tests/AbstractTestCase.php'); - $this->registerClass('AbstractBrowserTestCase', KERNEL_PATH . '/../tests/AbstractBrowserTestCase.php'); + $this->registerClass('AbstractTestCase', KERNEL_PATH . '/../tests/Unit/AbstractTestCase.php'); + $this->registerClass( + 'AbstractBrowserTestCase', + KERNEL_PATH . '/../tests/Functional/AbstractBrowserTestCase.php' + ); // do not move to config - this helper is used before configs are read $this->registerClass('kModulesHelper', KERNEL_PATH . self::MODULE_HELPER_PATH, 'ModulesHelper'); Fisheye: Tag 16822 refers to a dead (removed) revision in file `branches/5.2.x/core/tests/kernel/utility/formatters/kFormatterTest.php'. Fisheye: No comparison available. Pass `N' to diff?