]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/phpcov.php
Release 6.2.0
[Github/sugarcrm.git] / tests / PHPUnit / phpcov.php
1 #!/usr/bin/env php
2 <?php
3 /**
4  * PHP_CodeCoverage
5  *
6  * Copyright (c) 2009-2011, Sebastian Bergmann <sb@sebastian-bergmann.de>.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  *   * Redistributions of source code must retain the above copyright
14  *     notice, this list of conditions and the following disclaimer.
15  *
16  *   * Redistributions in binary form must reproduce the above copyright
17  *     notice, this list of conditions and the following disclaimer in
18  *     the documentation and/or other materials provided with the
19  *     distribution.
20  *
21  *   * Neither the name of Sebastian Bergmann nor the names of his
22  *     contributors may be used to endorse or promote products derived
23  *     from this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  *
38  * @package   PHP_CodeCoverage
39  * @author    Sebastian Bergmann <sb@sebastian-bergmann.de>
40  * @copyright 2009-2011 Sebastian Bergmann <sb@sebastian-bergmann.de>
41  * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
42  * @since     File available since Release 1.0.0
43  */
44
45 if (strpos('@php_bin@', '@php_bin') === 0) {
46     set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
47 }
48
49 require 'PHP/CodeCoverage/TextUI/Command.php';
50
51 PHP_CodeCoverage_TextUI_Command::main();