TimeTrex Community Edition v16.2.0

This commit is contained in:
2022-12-13 07:10:06 +01:00
commit 472f000c1b
6810 changed files with 2636142 additions and 0 deletions

View 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');
}
}