forked from billbeeio/billbee-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 770 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
<!--
~ This file is part of the Billbee API package.
~
~ Copyright 2017 - now by Billbee GmbH
~
~ For the full copyright and license information, please read the LICENSE
~ file that was distributed with this source code.
~
~ Created by Julian Finkler <julian@mintware.de>
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/autoload.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Billbee API Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>