Skip to content

Commit

Permalink
Merge pull request #4157 from samsonasik/fix-4114
Browse files Browse the repository at this point in the history
[Develop] Fixes #4114 Cannot declare class Config\App error on running PHPUnit
  • Loading branch information
samsonasik authored Jan 27, 2021
2 parents 0ae2e20 + 727516e commit 7c03009
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion admin/framework/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="app">
<testsuite name="App">
<directory>./tests</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion admin/module/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="app">
<testsuite name="App">
<directory>./tests</directory>
</testsuite>
</testsuites>
Expand Down
2 changes: 1 addition & 1 deletion admin/starter/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="app">
<testsuite name="App">
<directory>./tests</directory>
</testsuite>
</testsuites>
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuites>
<testsuite name="system">
<testsuite name="System">
<directory>./tests/system</directory>
<exclude>./tests/system/Database</exclude>
</testsuite>
<testsuite name="database">
<testsuite name="Database">
<directory>./tests/system/Database</directory>
</testsuite>
</testsuites>
Expand Down

0 comments on commit 7c03009

Please sign in to comment.