Skip to content

Commit 72f57f8

Browse files
authored
Merge pull request #1 from dinocajic/create-test-folder
Added tests folder and created phpunit.xml
2 parents 27bf821 + 90435e4 commit 72f57f8

File tree

5 files changed

+405
-0
lines changed

5 files changed

+405
-0
lines changed

composer.json

Lines changed: 5 additions & 0 deletions
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

Lines changed: 13 additions & 0 deletions
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)