phpunit.xml.dist 679 B

12345678910111213
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" bootstrap="tests/bootstrap.php" colors="true" failOnRisky="true" failOnWarning="true" processIsolation="false" stopOnError="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd">
  3. <testsuites>
  4. <testsuite name="PhpOption Type Test Suite">
  5. <directory>./tests/PhpOption/</directory>
  6. </testsuite>
  7. </testsuites>
  8. <groups>
  9. <exclude>
  10. <group>performance</group>
  11. </exclude>
  12. </groups>
  13. </phpunit>