Skip to content

Commit 199d27a

Browse files
committed
Rename directory with images tests
1 parent bb79982 commit 199d27a

13 files changed

Lines changed: 10 additions & 10 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
],
138138
"test:images:standalone": [
139139
"@build:standalone",
140-
"bin/phpunit --configuration phpunit.images.xml tests/Docker/Standalone"
140+
"bin/phpunit --configuration phpunit.images.xml tests/ImageTests/Standalone"
141141
],
142142
"test:php": [
143143
"@test:php:unit",

phpunit.images.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<testsuites>
1818
<testsuite name="Dirigent Standalone Image Tests Suite">
19-
<directory>tests/Docker/Standalone</directory>
19+
<directory>tests/ImageTests/Standalone</directory>
2020
</testsuite>
2121
</testsuites>
2222
</phpunit>

tests/Docker/Standalone/ConsoleTest.php renamed to tests/ImageTests/Standalone/ConsoleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CodedMonkey\Dirigent\Tests\Docker\Standalone;
3+
namespace CodedMonkey\Dirigent\Tests\ImageTests\Standalone;
44

55
class ConsoleTest extends DockerStandaloneTestCase
66
{

tests/Docker/Standalone/DatabaseTest.php renamed to tests/ImageTests/Standalone/DatabaseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CodedMonkey\Dirigent\Tests\Docker\Standalone;
3+
namespace CodedMonkey\Dirigent\Tests\ImageTests\Standalone;
44

55
class DatabaseTest extends DockerStandaloneTestCase
66
{

tests/Docker/Standalone/DockerStandaloneIsolatedTestCase.php renamed to tests/ImageTests/Standalone/DockerStandaloneIsolatedTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CodedMonkey\Dirigent\Tests\Docker\Standalone;
3+
namespace CodedMonkey\Dirigent\Tests\ImageTests\Standalone;
44

55
abstract class DockerStandaloneIsolatedTestCase extends DockerStandaloneTestCase
66
{

tests/Docker/Standalone/DockerStandaloneTestCase.php renamed to tests/ImageTests/Standalone/DockerStandaloneTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CodedMonkey\Dirigent\Tests\Docker\Standalone;
3+
namespace CodedMonkey\Dirigent\Tests\ImageTests\Standalone;
44

55
use PHPUnit\Framework\TestCase;
66
use Testcontainers\Container\GenericContainer;

tests/Docker/Standalone/EntrypointTest.php renamed to tests/ImageTests/Standalone/EntrypointTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CodedMonkey\Dirigent\Tests\Docker\Standalone;
3+
namespace CodedMonkey\Dirigent\Tests\ImageTests\Standalone;
44

55
use PHPUnit\Framework\TestCase;
66
use Testcontainers\Container\GenericContainer;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CodedMonkey\Dirigent\Tests\Docker\Standalone;
3+
namespace CodedMonkey\Dirigent\Tests\ImageTests\Standalone;
44

55
use PHPUnit\Framework\Attributes\DataProvider;
66
use Symfony\Component\Filesystem\Filesystem;

tests/Docker/Standalone/PhpPlatformTest.php renamed to tests/ImageTests/Standalone/PhpPlatformTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace CodedMonkey\Dirigent\Tests\Docker\Standalone;
3+
namespace CodedMonkey\Dirigent\Tests\ImageTests\Standalone;
44

55
class PhpPlatformTest extends DockerStandaloneTestCase
66
{

0 commit comments

Comments
 (0)