Skip to content

Commit d11e08d

Browse files
committed
separate source and test files
1 parent 71f3111 commit d11e08d

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@
2323
},
2424
"autoload": {
2525
"psr-4": {
26-
"XApi\\Repository\\Doctrine\\": ""
26+
"XApi\\Repository\\Doctrine\\": "src/"
27+
}
28+
},
29+
"autoload-dev": {
30+
"psr-4": {
31+
"XApi\\Repository\\Doctrine\\Tests\\": "tests/"
2732
}
2833
},
2934
"extra": {

phpunit.xml.dist

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,12 @@
22
<phpunit colors="true" bootstrap="vendor/autoload.php">
33
<testsuites>
44
<testsuite name="common classes for Doctrine based driver implementations of an xAPI storage">
5-
<directory>./Tests</directory>
5+
<directory>./tests</directory>
66
</testsuite>
77
</testsuites>
88
<filter>
99
<whitelist>
10-
<directory>.</directory>
11-
<exclude>
12-
<directory>./Tests</directory>
13-
<directory>./vendor</directory>
14-
</exclude>
10+
<directory>./src</directory>
1511
</whitelist>
1612
</filter>
1713
</phpunit>

0 commit comments

Comments
 (0)