-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
66 lines (66 loc) · 2.35 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Horizon">
<directory suffix="Test.php">./tests/Feature/Horizon</directory>
</testsuite>
<testsuite name="Tenant">
<directory suffix="Test.php">./tests/Feature/Tenant</directory>
</testsuite>
<testsuite name="Config">
<file>./tests/Feature/GraphQL/ConfigTest.php</file>
</testsuite>
<testsuite name="Fundamental">
<file>./tests/Feature/GraphQL/FundamentalTest.php</file>
</testsuite>
<testsuite name="Notification">
<file>./tests/Feature/GraphQL/NotificationTest.php</file>
</testsuite>
<testsuite name="Position">
<file>./tests/Feature/GraphQL/PositionTest.php</file>
</testsuite>
<testsuite name="Role">
<file>./tests/Feature/GraphQL/RoleTest.php</file>
</testsuite>
<testsuite name="Sanctum">
<file>./tests/Feature/GraphQL/SanctumTest.php</file>
</testsuite>
<testsuite name="SpecificFundamental">
<file>./tests/Feature/GraphQL/SpecificFundamentalTest.php</file>
</testsuite>
<testsuite name="Team">
<file>./tests/Feature/GraphQL/TeamTest.php</file>
</testsuite>
<testsuite name="TrainingConfig">
<file>./tests/Feature/GraphQL/TrainingConfigTest.php</file>
</testsuite>
<testsuite name="Training">
<file>./tests/Feature/GraphQL/TrainingTest.php</file>
</testsuite>
<testsuite name="User">
<file>./tests/Feature/GraphQL/UserTest.php</file>
</testsuite>
<testsuite name="ConfirmationTraining">
<file>./tests/Feature/GraphQL/ConfirmationTrainingTest.php</file>
</testsuite>
<testsuite name="Ping">
<file>./tests/Feature/Tenant/PingTest.php</file>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="reports" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">./app</directory>
</include>
</source>
</phpunit>