move code up one directory
[atutor.git] / include / unit_tests / AllTests.php
1 <?php
2 /****************************************************************/
3 /* ATutor                                                       */
4 /****************************************************************/
5 /* Copyright (c) 2002-2010                                      */
6 /* Inclusive Design Institute                                   */
7 /* http://atutor.ca                                             */
8 /*                                                              */
9 /* This program is free software. You can redistribute it and/or*/
10 /* modify it under the terms of the GNU General Public License  */
11 /* as published by the Free Software Foundation.                */
12 /****************************************************************/
13 // $Id: $
14
15 /**
16  * Tests utility functions for the infusion builder.
17  */
18 define("SIMPLETEST_PATH", "insert your path here");
19
20 require_once (SIMPLETEST_PATH.'/simpletest/autorun.php');
21 require_once('ContentOutputUtilsTest.php');
22
23 class AllTests extends TestSuite {
24     function __construct() {
25         parent::__construct();
26 //      $this->addTestCase(new TestContentOutputUtils()); //fails, but can be modified later to not fail
27     }
28 }
29
30 ?>