Skip to content

Commit 55ff428

Browse files
committed
Move 'tests/AutoReview' to 'tests/system/AutoReview'
1 parent 46eb15c commit 55ff428

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
"autoload-dev": {
6969
"psr-4": {
7070
"CodeIgniter\\": "tests/system/",
71-
"CodeIgniter\\AutoReview\\": "tests/AutoReview/",
7271
"Utils\\": "utils/"
7372
}
7473
},

phpunit.xml.dist

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@
3737

3838
<testsuites>
3939
<testsuite name="AutoReview">
40-
<directory>./tests/AutoReview</directory>
40+
<directory>./tests/system/AutoReview</directory>
4141
</testsuite>
4242
<testsuite name="System">
4343
<directory>./tests/system</directory>
4444
<exclude>./tests/system/Database</exclude>
45+
<exclude>./tests/system/AutoReview</exclude>
4546
</testsuite>
4647
<testsuite name="Database">
4748
<directory>./tests/system/Database</directory>

tests/AutoReview/ComposerJsonTest.php renamed to tests/system/AutoReview/ComposerJsonTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @coversNothing
2323
*
24-
* @group auto-review
24+
* @group AutoReview
2525
*/
2626
final class ComposerJsonTest extends TestCase
2727
{
@@ -32,8 +32,8 @@ protected function setUp(): void
3232
{
3333
parent::setUp();
3434

35-
$this->devComposer = $this->getComposerJson(dirname(__DIR__, 2) . '/composer.json');
36-
$this->frameworkComposer = $this->getComposerJson(dirname(__DIR__, 2) . '/admin/framework/composer.json');
35+
$this->devComposer = $this->getComposerJson(dirname(__DIR__, 3) . '/composer.json');
36+
$this->frameworkComposer = $this->getComposerJson(dirname(__DIR__, 3) . '/admin/framework/composer.json');
3737
}
3838

3939
public function testFrameworkRequireIsTheSameWithDevRequire(): void

0 commit comments

Comments
 (0)