TimeTrex Community Edition v16.2.0
This commit is contained in:
22
vendor/phpunit/phpunit-selenium/Tests/CodeCoverageTest.php
vendored
Normal file
22
vendor/phpunit/phpunit-selenium/Tests/CodeCoverageTest.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Tests;
|
||||
|
||||
use PHPUnit\Extensions\Selenium2TestCase;
|
||||
|
||||
class CodeCoverageTest extends Selenium2TestCase
|
||||
{
|
||||
protected $coverageScriptUrl = 'http://localhost/phpunit_coverage.php';
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->markTestIncomplete('Would require PHP 5.4 for running .php files on the server');
|
||||
$this->setBrowser(PHPUNIT_TESTSUITE_EXTENSION_SELENIUM2_BROWSER);
|
||||
$this->setBrowserUrl('http://localhost/');
|
||||
}
|
||||
|
||||
public function testCoverageIsRetrieved()
|
||||
{
|
||||
$this->url('example.php');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user