-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml
29 lines (26 loc) · 1007 Bytes
/
phpunit.xml
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
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php" colors="true">
<!--Example <php>-->
<!--<var name="db_dsn" value="mysql:dbname=hello_world_test;host=localhost"/>-->
<!--<var name="db_username" value="root"/>-->
<!--<var name="db_password" value=""/>-->
<!--</php>-->
<testsuites>
<testsuite name="SPARQL Test Suite">
<!--directory>./tests/</directory-->
<file>./tests/ParserSparqlResultTest.php</file>
<file>./tests/ParserSparqlTest.php</file>
<file>./tests/SparqlClientTest.php</file>
<file>./tests/virtuosoTest.php</file>
<file>./tests/ParserCsvTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./src</directory>
<exclude>
<directory>./tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>