root/trunk/generator/test/classes/propel/BaseTestCase.php

Revision 833, 0.6 kB (checked in by hans, 1 year ago)

Merging in changes from 1.3 branch. svn merge -r 534:832

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id Rev Date Author HeadURL Revision
Line 
1 <?php
2
3 require_once 'propel/Propel.php';
4 require_once 'PHPUnit/Framework/TestCase.php';
5
6 /**
7  * Base functionality to be extended by all Propel test cases.  Test
8  * case implementations are used to automate unit testing via PHPUnit.
9  *
10  * @author     Hans Lellelid <hans@xmpl.org> (Propel)
11  * @author     Daniel Rall <dlr@finemaltcoding.com> (Torque)
12  * @author     Christopher Elkins <celkins@scardini.com> (Torque)
13  * @version    $Revision$
14  */
15 abstract class BaseTestCase extends PHPUnit_Framework_TestCase {
16
17     /**
18      * Conditional compilation flag.
19      */
20     const DEBUG = false;
21
22 }
23
Note: See TracBrowser for help on using the browser.