kekrozsak/vendor/kriswallsmith/assetic/tests/Assetic/Test/Filter/Yui/CssCompressorFilterTest.php

24 lines
636 B
PHP

<?php
/*
* This file is part of the Assetic package, an OpenSky project.
*
* (c) 2010-2012 OpenSky Project Inc
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Assetic\Test\Filter\Yui;
use Assetic\Filter\Yui\CssCompressorFilter;
class CssCompressorFilterTest extends \PHPUnit_Framework_TestCase
{
public function testInterface()
{
$filter = new CssCompressorFilter('/path/to/jar');
$this->assertInstanceOf('Assetic\\Filter\\FilterInterface', $filter, 'CssCompressorFilter implements FilterInterface');
}
}