mirror of
https://github.com/doctrine/inflector.git
synced 2026-03-23 22:42:11 +01:00
28 lines
682 B
XML
28 lines
682 B
XML
<?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"
|
|
beStrictAboutOutputDuringTests="true"
|
|
failOnRisky="true"
|
|
failOnWarning="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Doctrine Inflector Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<source>
|
|
<include>
|
|
<directory>src</directory>
|
|
</include>
|
|
</source>
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>performance</group>
|
|
</exclude>
|
|
</groups>
|
|
</phpunit>
|