aboutsummaryrefslogtreecommitdiffstats
path: root/public/system/storage/vendor/guzzlehttp/oauth-subscriber/phpunit.xml.dist
blob: 36f5598adf5b1c9b1bc60ab36ffd4b69b70ca3a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php"
         colors="true">
    <php>
        <!-- Specify your twitter OAuth credentials -->
        <server name="OAUTH_CONSUMER_KEY" value="" />
        <server name="OAUTH_CONSUMER_SECRET" value="" />
        <server name="OAUTH_TOKEN" value="" />
        <server name="OAUTH_TOKEN_SECRET" value="" />
    </php>
    <testsuites>
        <testsuite>
            <directory>tests</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">src</directory>
        </whitelist>
    </filter>
</phpunit>