graphql-php/phpunit.xml.dist

29 lines
699 B
Plaintext
Raw Normal View History

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"
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>
<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>