-
Thomas Steur a rédigé
refs #5940 we might stay backwards compatible this way for 2 months. moved some tests from unit to integration and explained when a test is a unit test, an integration test or a system test.
Thomas Steur a rédigérefs #5940 we might stay backwards compatible this way for 2 months. moved some tests from unit to integration and explained when a test is a unit test, an integration test or a system test.
IntegrationTestCase.php 594 o
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
/**
* @deprecated since 2.8.0 extend \Piwik\Tests\Impl\SystemTestCase instead
*/
class IntegrationTestCase extends \Piwik\Tests\Impl\SystemTestCase
{
public static function setUpBeforeClass()
{
\Piwik\Log::debug('\IntegrationTestCase is deprecated since 2.8.0 extend \Piwik\Tests\Impl\SystemTestCase instead');
parent::setUpBeforeClass();
}
}
IntegrationTestCase::$fixture = new \Piwik\Tests\Impl\Fixture();