/Group-I/jobeet/lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/bin/prove.php
https://bitbucket.org/hosseinzolfi/db-lab-spring-2011/ · PHP · 31 lines · 18 code · 6 blank · 7 comment · 1 complexity · 01b766ca25f5f989a0037d3890e7eb65 MD5 · raw file
- <?php
- /*
- * This file is part of the symfony package.
- * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- require_once dirname(__FILE__).'/../../../../../lib/vendor/lime/lime.php';
- require_once dirname(__FILE__).'/../../../../../lib/util/sfToolkit.class.php';
- require_once dirname(__FILE__).'/../../../../../lib/util/sfFinder.class.php';
- if ($files = glob(sfToolkit::getTmpDir().DIRECTORY_SEPARATOR.'/sf_autoload_unit_*'))
- {
- foreach ($files as $file)
- {
- unlink($file);
- }
- }
- $h = new lime_harness(new lime_output_color);
- $h->base_dir = realpath(dirname(__FILE__).'/..');
- $h->register(sfFinder::type('file')->prune('fixtures')->name('*Test.php')->in(array(
- $h->base_dir.'/unit',
- $h->base_dir.'/functional',
- )));
- exit($h->run() ? 0 : 1);