-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
42 lines (41 loc) · 1.41 KB
/
phpunit.xml.dist
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
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<!--
<phpunit> attributes:
beStrictAboutTestSize for PHPUnit < 5.0.0 (replaced by enforceTimeLimit)
checkForUnintentionallyCoveredCode for PHPUnit < 6.0.0 (replaced by beStrictAboutCoversAnnotation)
-->
<phpunit
bootstrap="tests/bootstrap.php"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutResourceUsageDuringSmallTests="true"
beStrictAboutTestSize="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
checkForUnintentionallyCoveredCode="true"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
enforceTimeLimit="true"
forceCoversAnnotation="true"
verbose="true">
<testsuites>
<testsuite name="Attempts Counter">
<directory>tests</directory>
</testsuite>
</testsuites>
<!-- <filter> deprecated since PHPUnit 9.3.0 (replaced by <coverage>) -->
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
</phpunit>