-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
phpunit.xml
26 lines (26 loc) · 1.03 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
<exclude>./tests/test-application/</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory>src/</directory>
</include>
<exclude>
<directory>src/Exceptions</directory>
<directory>src/Stubs</directory>
<directory>src/Http</directory>
<file>src/config.php</file>
<file>src/NovaPageFacade.php</file>
<file>src/NovaPageRouteMacros.php</file>
<file>src/NovaPageServiceProvider.php</file>
<file>src/NovaPageTool.php</file>
<file>src/NovaPageToolServiceProvider.php</file>
<file>src/Sources/SourceInterface.php</file>
</exclude>
</source>
</phpunit>