<?php
/**
 * This file launches all the available unit tests for the classes
 * of the mobileOK authoring plug-ins and libraries.
 * 
 * The tests use SimpleTest:
 *  http://www.onpk.net/php/simpletest.org/
 * 
 * The root folder of simpletest must be in the path to be able
 * to execute this file, i.e. the underlying php.ini file should
 * contain an include_path directive or the simpletest library
 * must be copied in the folder of this file.
 * 
 * @author Francois Daoust <fd@w3.org>
 * @package Tests
 * @subpackage TransPythia
 * @version $Revision: 1.1 $
 * @license http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html W3C Software Notice and License
 * @copyright Copyright (c) 2009, W3C (MIT, ERCIM, Keio)
 */

ini_set('include_path',ini_get('include_path').':/home/fd/dev/phplibs');

/**
 * Including the simple test autorun script
 */
require_once("simpletest/autorun.php");



class AllTests extends TestSuite {
    function AllTests() {
        $this->TestSuite('All tests');
        //$this->addFile('transcodingactionpagination_test.php');
        //$this->addFile('transcodingactionresizeimg_test.php');
        //$this->addFile('transcodingactionlineartables_test.php');
        $this->addFile('transcodingactiondeleteembeds_test.php');
        $this->addFile('transcodingactiondeletepopup_test.php');
    }
}

?>