]> git.openstreetmap.org Git - nominatim.git/blob - test/php/phpunit.xml
remove phpunit config key deprecated since version 3.5
[nominatim.git] / test / php / phpunit.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit backupGlobals="false"
3     backupStaticAttributes="false"
4     colors="true"
5     convertErrorsToExceptions="true"
6     convertNoticesToExceptions="true"
7     convertWarningsToExceptions="true"
8     processIsolation="false"
9     stopOnFailure="false"
10     bootstrap="./bootstrap.php"
11     beStrictAboutTestsThatDoNotTestAnything="true"
12     >
13     <php>
14     </php>
15     <testsuites>
16         <testsuite name="Nominatim PHP Test Suite">
17             <directory>./Nominatim</directory>
18         </testsuite>
19     </testsuites>
20     <filter>
21         <whitelist>
22             <directory>./lib/</directory>
23         </whitelist>
24     </filter>
25
26 </phpunit>