File: phpunit.xml

package info (click to toggle)
shaarli 0.15.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,640 kB
  • sloc: php: 30,003; javascript: 2,061; makefile: 135; xml: 69; python: 42; sh: 35
file content (26 lines) | stat: -rw-r--r-- 812 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
    colors="true">
  <coverage includeUncoveredFiles="true">
    <include>
      <directory suffix=".php">application</directory>
    </include>
  </coverage>
  <testsuites>
    <testsuite name="unit-tests">
      <directory>tests</directory>
      <exclude>tests/languages</exclude>
    </testsuite>
    <testsuite name="language-de">
      <directory>tests/languages/de</directory>
    </testsuite>
    <testsuite name="language-en">
      <directory>tests/languages/en</directory>
    </testsuite>
    <testsuite name="language-fr">
      <directory>tests/languages/fr</directory>
    </testsuite>
  </testsuites>
</phpunit>