public static function suite()
 {
     $suite = new PHPUnit_Framework_TestSuite('OrangeHRM');
     $suite->addTest(common_AllTests::suite());
     $suite->addTest(utils_AllTests::suite());
     $suite->addTest(models_AllTests::suite());
     $suite->addTest(controllers_AllTests::suite());
     $suite->addTest(logger_AllTests::suite());
     $suite->addTest(dao_AllTests::suite());
     $suite->addTest(extractor_AllTests::suite());
     return $suite;
 }
示例#2
0
 * if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA
 *
 */
if (!defined('PHPUnit_MAIN_METHOD')) {
    define('PHPUnit_MAIN_METHOD', 'controllers_AllTests::main');
}
set_include_path(get_include_path() . PATH_SEPARATOR . "../../build");
require_once 'PHPUnit/Framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once 'TimeControllerTest.php';
require_once 'ViewControllerTest.php';
require_once 'RecruitmentControllerTest.php';
class controllers_AllTests
{
    public static function main()
    {
        PHPUnit_TextUI_TestRunner::run(self::suite());
    }
    public static function suite()
    {
        $suite = new PHPUnit_Framework_TestSuite('OrangeHRM controllers');
        $suite->addTestSuite('TimeControllerTest');
        $suite->addTestSuite('ViewControllerTest');
        $suite->addTestSuite('RecruitmentControllerTest');
        return $suite;
    }
}
if (PHPUnit_MAIN_METHOD == 'controllers_AllTests::main') {
    controllers_AllTests::main();
}