git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@68 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
23 lines
544 B
PHP
23 lines
544 B
PHP
<?php
|
|
include_once 'baseCompressTest.php';
|
|
include_once 'htmlCompressTest.php';
|
|
include_once 'cssCompressTest.php';
|
|
include_once 'jsCompressTest.php';
|
|
include_once 'CompressTest.php';
|
|
|
|
class testSuite
|
|
{
|
|
public static function suite()
|
|
{
|
|
$suite = new PHPUnit_Framework_TestSuite();
|
|
|
|
$suite->addTestSuite('baseCompressTest');
|
|
$suite->addTestSuite('htmlCompressTest');
|
|
$suite->addTestSuite('cssCompressTest');
|
|
$suite->addTestSuite('jsCompressTest');
|
|
$suite->addTestSuite('CompressTest');
|
|
|
|
return $suite;
|
|
}
|
|
}
|