root/trunk/tests/definitions/DefinitionsTestSuite.php

Revision 144, 0.8 kB (checked in by mikey, 3 weeks ago)

replace mail address and dirname(FILE) by DIR

Line 
1 <?php
2 /**
3  * Test suite for all definitions.
4  *
5  * @author      Frank Kleine <mikey@xjconf.net>
6  * @package     XJConf
7  * @subpackage  test
8  */
9 /**
10  * Test suite for all definitions.
11  *
12  * @package     XJConf
13  * @subpackage  test
14  */
15 class DefinitionsTestSuite extends TestSuite
16 {
17     /**
18      * constructor
19      */
20     public function __construct()
21     {
22         $this->TestSuite('All definition tests');
23         $this->addTestFile(__DIR__ . '/AttributeDefinitionTestCase.php');
24         $this->addTestFile(__DIR__ . '/CDataDefinitionTestCase.php');
25         $this->addTestFile(__DIR__ . '/ConstructorDefinitionTestCase.php');
26         $this->addTestFile(__DIR__ . '/FactoryMethodDefinitionTestCase.php');
27         $this->addTestFile(__DIR__ . '/NamespaceDefinitionTestCase.php');
28     }
29 }
30 ?>
Note: See TracBrowser for help on using the browser.