summaryrefslogtreecommitdiff
path: root/phpunit.xml
blob: b7a0247cfe98d3a941fae6ca3e9aa91ea755caa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<phpunit
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.0/phpunit.xsd"
         bootstrap="tests/autoload.php"
         verbose="true"
         cacheDirectory=".phpunit.cache"
         executionOrder="depends,defects"
         beStrictAboutOutputDuringTests="true"
         beStrictAboutTodoAnnotatedTests="true"
         failOnRisky="true"
         failOnWarning="true">
  <testsuite name="tt-rss">
    <directory>tests</directory>
  </testsuite>

</phpunit>