TestHelper.php 774 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Phergie
  4. *
  5. * PHP version 5
  6. *
  7. * LICENSE
  8. *
  9. * This source file is subject to the new BSD license that is bundled
  10. * with this package in the file LICENSE.
  11. * It is also available through the world-wide-web at this URL:
  12. * http://phergie.org/license
  13. *
  14. * @category Phergie
  15. * @package Phergie_Tests
  16. * @author Phergie Development Team <team@phergie.org>
  17. * @copyright 2008-2010 Phergie Development Team (http://phergie.org)
  18. * @license http://phergie.org/license New BSD License
  19. * @link http://pear.phergie.org/package/Phergie_Tests
  20. */
  21. error_reporting(E_ALL | E_STRICT);
  22. // Phergie components require Phergie_Autoload to function correctly.
  23. require_once dirname(__FILE__) . '/../Phergie/Autoload.php';
  24. Phergie_Autoload::registerAutoloader();