2018-07-29 18:43:10 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
2018-07-25 17:51:01 +03:00
|
|
|
bootstrap="tests/bootstrap.php"
|
2018-07-29 18:43:10 +03:00
|
|
|
>
|
|
|
|
<php>
|
|
|
|
<ini name="error_reporting" value="E_ALL"/>
|
|
|
|
</php>
|
2016-04-09 10:16:57 +03:00
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="webonyx/graphql-php Test Suite">
|
|
|
|
<directory>./tests/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2016-12-22 15:43:11 +03:00
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>ReactPromise</group>
|
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
|
2016-04-09 10:16:57 +03:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2016-11-01 13:39:52 +03:00
|
|
|
<directory suffix=".php">./src</directory>
|
2016-04-09 10:16:57 +03:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|