Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiosmosis <benaka@piwik.pro>2015-09-23 04:34:06 +0300
committerdiosmosis <benaka@piwik.pro>2015-09-23 04:34:06 +0300
commitf3b0ff5d449ad21fa6d8037c94d56eb23f1c49e4 (patch)
treed6e8c50ca9b4b4ad1601391bea488361ea283407 /tests/PHPUnit/Framework
parente08b8a462c09d2fa410c15df805eee1f92369c0a (diff)
Initialize extra fixture definitions properly in system test case setup before class.
Diffstat (limited to 'tests/PHPUnit/Framework')
-rwxr-xr-xtests/PHPUnit/Framework/TestCase/SystemTestCase.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/PHPUnit/Framework/TestCase/SystemTestCase.php b/tests/PHPUnit/Framework/TestCase/SystemTestCase.php
index b7b2f2f555..7797751b9f 100755
--- a/tests/PHPUnit/Framework/TestCase/SystemTestCase.php
+++ b/tests/PHPUnit/Framework/TestCase/SystemTestCase.php
@@ -69,6 +69,8 @@ abstract class SystemTestCase extends PHPUnit_Framework_TestCase
$fixture->extraTestEnvVars['loadRealTranslations'] = true; // load real translations by default for system tests
}
+ $fixture->extraDefinitions = static::provideContainerConfigBeforeClass();
+
try {
$fixture->performSetUp();
} catch (Exception $e) {