Skip to content

Commit

Permalink
[Develop] Fixes codeigniter4#4114 Cannot declare class Config\App err…
Browse files Browse the repository at this point in the history
…or on running PHPUnit
  • Loading branch information
samsonasik committed Jan 26, 2021
1 parent 237d24a commit 727516e
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 727516e

Please sign in to comment.