1
0
mirror of https://github.com/mrclay/minify.git synced 2025-01-17 21:28:14 +01:00
minify/tests/TestCase.php

22 lines
472 B
PHP
Raw Normal View History

2015-11-18 17:17:43 +02:00
<?php
class TestCase extends PHPUnit_Framework_TestCase
{
/** @var string */
protected static $test_files;
public static function setupBeforeClass()
{
self::$test_files = __DIR__ . '/../min_unit_tests/_test_files';
}
/**
* Excluding from phpunit.xml does not work, even using dir,
* hence this dummy test.
*
* @link http://stackoverflow.com/q/2736343/2314626
*/
public function test_does_nothing() {
}
2015-11-18 17:17:43 +02:00
}