generated from Setono/SyliusPluginSkeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
24 lines (23 loc) · 1.04 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
bootstrap="tests/Application/config/bootstrap.php">
<testsuites>
<testsuite name="SetonoSyliusGoogleAdsPlugin Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="test"/>
<env name="SHELL_VERBOSITY" value="-1"/>
<!-- Variables related to live testing -->
<env name="GOOGLE_ADS_LIVE" value="0"/> <!-- Set to 1 to enable live testing. Remember to fill out the details below also -->
<env name="GOOGLE_ADS_CLIENT_ID" value=""/>
<env name="GOOGLE_ADS_CLIENT_SECRET" value=""/>
<env name="GOOGLE_ADS_REFRESH_TOKEN" value=""/>
<env name="GOOGLE_ADS_DEVELOPER_TOKEN" value=""/>
<env name="GOOGLE_ADS_MANAGER_ID" value=""/>
<env name="GOOGLE_ADS_CUSTOMER_ID" value=""/>
</php>
</phpunit>