-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpunit.xml
More file actions
26 lines (26 loc) · 1005 Bytes
/
phpunit.xml
File metadata and controls
26 lines (26 loc) · 1005 Bytes
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" bootstrap="vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory>./src</directory>
</include>
<exclude>
<directory>./tests</directory>
</exclude>
</coverage>
<!--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>
</phpunit>