-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
37 lines (36 loc) · 1.19 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="utf-8" ?>
<!--
~ PHPUnitThrowableAssertions - Throwable-related PHPUnit assertions.
~
~ @copyright Copyright (c) 2021, Daniel Rudolf (<https://www.daniel-rudolf.de>)
~
~ This file is copyrighted by the contributors recorded in the version control
~ history of the file, available from the following original location:
~
~ <https://github.com/PhrozenByte/phpunit-throwable-asserts/blob/master/phpunit.xml>
~
~ @license http://opensource.org/licenses/MIT The MIT License
~
~ SPDX-License-Identifier: MIT
~ License-Filename: LICENSE
-->
<phpunit
bootstrap="./vendor/autoload.php"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.4/phpunit.xsd"
>
<testsuites>
<testsuite name="phpunit-throwable-asserts">
<directory>./tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="clover.xml"/>
<log type="coverage-text" target="php://stdout"/>
</logging>
</phpunit>