Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 24 additions & 9 deletions components/ILIAS/Test/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" stopOnFailure="false" backupGlobals="false" bootstrap="./tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
failOnRisky="true"
failOnWarning="true"
failOnDeprecation="true"
failOnNotice="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnSkippedTests="true"
backupGlobals="false"
bootstrap="./tests/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">classes</directory>
<directory suffix=".php">exceptions</directory>
<directory suffix=".php">interfaces</directory>
</include>
<report>
<html outputDirectory="build/coverage" highLowerBound="80"/>
</report>
</coverage>
<testsuite name="ilModulesTestSuite">
<file>./tests/ilModulesTestSuite.php</file>
<testsuite name="unit">
<directory>./tests</directory>
</testsuite>
<logging>
<testdoxHtml outputFile="build/dox.html"/>
</logging>
</phpunit>
<source>
<include>
<directory suffix=".php">classes</directory>
<directory suffix=".php">exceptions</directory>
<directory suffix=".php">interfaces</directory>
</include>
</source>
</phpunit>
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@

namespace ILIAS\Test\Certificate;

use PHPUnit\Framework\TestCase;
use ilTestBaseTestCase;

/**
* @author Niels Theen <ntheen@databay.de>
*/
class TestPlaceholderValuesTest extends TestCase
class TestPlaceholderValuesTest extends ilTestBaseTestCase
{
public function testA(): void
{
Expand Down
Loading