]> git.openstreetmap.org Git - nominatim.git/blob - phpunit.xml
small typos and wording in the API docs
[nominatim.git] / 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     syntaxCheck="true"
11     bootstrap="test/php/bootstrap.php"
12     >
13     <php>
14     </php>
15     <testsuites>
16         <testsuite name="Nominatim PHP Test Suite">
17             <directory>./test/php/Nominatim</directory>
18         </testsuite>
19     </testsuites>
20     <filter>
21         <whitelist>
22             <directory>./lib/</directory>
23         </whitelist>
24     </filter>
25
26 </phpunit>