-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (19 loc) · 795 Bytes
/
phpunit.xml
File metadata and controls
21 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Core">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<server name="LIQPAY_PUBLIC_KEY" value="sandbox_i1828626575"/>
<server name="LIQPAY_PRIVATE_KEY" value="sandbox_NYO1EKpeNa4sd91yOMbl92BrBZJMjMjFI47aQN0r"/>
<server name="LIQPAY_DEFAULT_CURRENCY" value="USD"/>
<server name="LIQPAY_LANUGAGE" value="en"/>
</php>
</phpunit>