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

UIAssetCacheBusterTest.php « AssetManager « Core « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 705000049c0262d64465fa181fc7d230307a5e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

use Piwik\AssetManager\UIAssetCacheBuster;

class UIAssetCacheBusterTest extends PHPUnit_Framework_TestCase
{

    /**
     * @var UIAssetCacheBuster
     */
    private $cacheBuster;

    public function setUp()
    {
        $this->cacheBuster = UIAssetCacheBuster::getInstance();
    }

    /**
     * @group Core
     */
    public function test_md5BasedCacheBuster()
    {
        $this->assertEquals('098f6bcd4621d373cade4e832627b4f6', $this->cacheBuster->md5BasedCacheBuster('test'));
    }
}