-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
73 lines (71 loc) · 2.6 KB
/
phpunit.xml
File metadata and controls
73 lines (71 loc) · 2.6 KB
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
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
forceCoversAnnotation="false"
beStrictAboutCoversAnnotation="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true"
colors="true">
<testsuites>
<testsuite name="Unit Tests">
<directory>tests</directory>
</testsuite>
<testsuite name="Search Service">
<file>tests/SearchServiceTest.php</file>
</testsuite>
<testsuite name="Core Service">
<file>tests/CoreServiceTest.php</file>
</testsuite>
<testsuite name="Wallet Service">
<file>tests/WalletServiceTest.php</file>
</testsuite>
<testsuite name="Order Service">
<file>tests/OrderServiceTest.php</file>
</testsuite>
<testsuite name="OrderProcessing Service">
<file>tests/OrderProcessingServiceTest.php</file>
</testsuite>
<testsuite name="Upload Service">
<file>tests/UploadServiceTest.php</file>
</testsuite>
<testsuite name="Chat Service">
<file>tests/ChatServiceTest.php</file>
</testsuite>
<testsuite name="Webhook Service">
<file>tests/WebhookServiceTest.php</file>
</testsuite>
<testsuite name="Auth">
<file>tests/AuthTest.php</file>
</testsuite>
<testsuite name="Config">
<file>tests/ConfigTest.php</file>
</testsuite>
<testsuite name="Client">
<file>tests/BasalamClientTest.php</file>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>vendor</directory>
<directory>tests</directory>
</exclude>
</coverage>
<php>
<!-- Environment variables for testing -->
<env name="BASALAM_TEST_TOKEN" value=""/>
<env name="BASALAM_TEST_CLIENT_ID" value=""/>
<env name="BASALAM_TEST_CLIENT_SECRET" value=""/>
<env name="DEBUG_TESTS" value="false"/>
</php>
</phpunit>