16 lines
542 B
PHP
16 lines
542 B
PHP
<?php
|
|
/**
|
|
* Used to serve back the server-side code coverage results to phpunit-selenium
|
|
*
|
|
* @copyright (C) 2007-2015 G. Giunta
|
|
* @license code licensed under the BSD License: see file license.txt
|
|
**/
|
|
|
|
$coverageFile = realpath(__DIR__ . "/../vendor/phpunit/phpunit-selenium/PHPUnit/Extensions/SeleniumCommon/phpunit_coverage.php");
|
|
|
|
// has to be the same value as used in server.php
|
|
$GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY'] = '/tmp/phpxmlrpc_coverage';
|
|
|
|
chdir($GLOBALS['PHPUNIT_COVERAGE_DATA_DIRECTORY']);
|
|
|
|
include_once $coverageFile; |