phpunit.php 819 B

12345678910111213141516171819
  1. #! php -d safe_mode=Off
  2. <?php
  3. // +----------------------------------------------------------------------
  4. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2009 http://thinkphp.cn All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  9. // +----------------------------------------------------------------------
  10. // | Author: liu21st <liu21st@gmail.com>
  11. // +----------------------------------------------------------------------
  12. // $Id: phpunit.php 2504 2011-12-28 07:35:29Z liu21st $
  13. require_once 'PHPUnit/Util/Filter.php';
  14. PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT');
  15. require_once 'PHPUnit/TextUI/Command.php';
  16. ?>