-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
33 lines (31 loc) · 1.2 KB
/
phpunit.xml
File metadata and controls
33 lines (31 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="./tests/phpunit/bootstrap.php"
backupGlobals="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
verbose="true"
>
<coverage pathCoverage="true">
<include>
<!-- Normalerweise: Source-Code, nicht Tests -->
<directory suffix=".php">./src/</directory>
</include>
</coverage>
<testsuites>
<!-- Deine reguläre WP-Suite -->
<testsuite name="My Unit-Test 1">
<directory suffix="Test.php">./tests/phpunit/testcases</directory>
<exclude>./tests/phpunit/testcase_seperated</exclude>
</testsuite>
<!-- Optional: zweite Suite für die separaten Tests (aber OHNE Stubs) -->
<testsuite name="href_Test">
<directory suffix="Test.php">./tests/phpunit/testcase_seperated</directory>
</testsuite>
</testsuites>
</phpunit>