mirror of
https://github.com/mrclay/minify.git
synced 2025-03-13 08:59:38 +01:00
12 lines
248 B
PHP
12 lines
248 B
PHP
<?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';
|
|
}
|
|
} |