BaseTestCase.php 834 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * This file is part of the Propel package.
  4. * For the full copyright and license information, please view the LICENSE
  5. * file that was distributed with this source code.
  6. *
  7. * @license MIT License
  8. */
  9. require_once dirname(__FILE__) . '/../../../runtime/lib/Propel.php';
  10. require_once 'PHPUnit/Framework/TestCase.php';
  11. /**
  12. * Base functionality to be extended by all Propel test cases. Test
  13. * case implementations are used to automate unit testing via PHPUnit.
  14. *
  15. * @author Hans Lellelid <hans@xmpl.org> (Propel)
  16. * @author Daniel Rall <dlr@finemaltcoding.com> (Torque)
  17. * @author Christopher Elkins <celkins@scardini.com> (Torque)
  18. * @version $Revision: 1773 $
  19. */
  20. abstract class BaseTestCase extends PHPUnit_Framework_TestCase {
  21. /**
  22. * Conditional compilation flag.
  23. */
  24. const DEBUG = false;
  25. }