1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-30 00:59:48 +02:00

add common TestCase class

This commit is contained in:
Elan Ruusamäe
2015-11-18 17:17:43 +02:00
committed by Steve Clay
parent 08070aecdb
commit 4bfe976916
3 changed files with 16 additions and 9 deletions

12
tests/TestCase.php Normal file
View File

@@ -0,0 +1,12 @@
<?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';
}
}