-
Notifications
You must be signed in to change notification settings - Fork 13
/
phpunit.xml.dist
40 lines (35 loc) · 1.26 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="./tests/bootstrap.php.dist">
<php>
<var name="host_url" value=""/>
<var name="relying_party_uuid" value=""/>
<var name="relying_party_name" value=""/>
<var name="document_number" value=""/>
<var name="national_identity_number" value=""/>
<var name="country_code" value=""/>
<var name="certificate_level" value=""/>
<var name="data_to_sign" value=""/>
</php>
<testsuites>
<testsuite name="UnitTest">
<directory>./tests</directory>
<exclude>./tests/Sk/SmartId/Tests/Api/SmartIdClientIntegrationTest.php</exclude>
<exclude>./tests/Sk/SmartId/Tests/Rest/SmartIdRestIntegrationTest.php</exclude>
</testsuite>
<testsuite name="ClientIntegrationTest">
<file>./tests/Sk/SmartId/Tests/Api/SmartIdClientIntegrationTest.php</file>
</testsuite>
<testsuite name="RestIntegrationTest">
<file>./tests/Sk/SmartId/Tests/Rest/SmartIdRestIntegrationTest.php</file>
</testsuite>
</testsuites>
</phpunit>