Skip to content

Commit f7d3580

Browse files
committed
Added tests folder and created phpunit.xml
1 parent 27bf821 commit f7d3580

File tree

5 files changed

+405
-0
lines changed

5 files changed

+405
-0
lines changed

composer.json

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"require": {
33
"phpunit/phpunit": "^8.5"
4+
},
5+
"autoload":{
6+
"psr-4": {
7+
"App\\": "app"
8+
}
49
}
510
}

phpunit.xml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8">
2+
<phpunit bootstrap="vendor/autoload.php"
3+
colors="true"
4+
verbose="true"
5+
stopOnFailure="false">
6+
<testsuites>
7+
<testsuite name="Test suite">
8+
<directory>
9+
tests
10+
</directory>
11+
</testsuite>
12+
</testsuites>
13+
</phpunit>

0 commit comments

Comments
 (0)