Skip to content

Commit c2ae2f4

Browse files
committed
fix
1 parent 493cedd commit c2ae2f4

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build-mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches: [ 'master' ]
55

6-
name: build
6+
name: MySQL build
77

88
jobs:
99
tests:

tests/MySqlIntegration.suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\Integration
2-
actor: IntegrationTester
1+
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\MySqlIntegration
2+
actor: MySqlIntegrationTester
33
modules:
44
enabled:
55
- Db:

tests/Integration/DatabasePopulateTest.php renamed to tests/MySqlIntegration/DatabasePopulateTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
declare(strict_types=1);
44

5-
namespace Vjik\Codeception\DatabasePopulator\Tests\Integration;
5+
namespace Vjik\Codeception\DatabasePopulator\Tests\MySqlIntegration;
66

77
use Codeception\Exception\ModuleException;
88
use Codeception\Test\Unit;
99
use PDO;
10-
use Vjik\Codeception\DatabasePopulator\Tests\IntegrationTester;
10+
use Vjik\Codeception\DatabasePopulator\Tests\MySqlIntegrationTester;
1111

1212
use function dirname;
1313

1414
final class DatabasePopulateTest extends Unit
1515
{
1616
/**
17-
* @var IntegrationTester
17+
* @var MySqlIntegrationTester
1818
*/
1919
protected $tester;
2020

tests/MySqlPreload.suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\Preload
2-
actor: PreloadTester
1+
suite_namespace: Vjik\Codeception\DatabasePopulator\Tests\MySqlPreload
2+
actor: MySqlPreloadTester
33
modules:
44
enabled:
55
- Db:

tests/Preload/PreloadTest.php renamed to tests/MySqlPreload/PreloadTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
declare(strict_types=1);
44

5-
namespace Vjik\Codeception\DatabasePopulator\Tests\Preload;
5+
namespace Vjik\Codeception\DatabasePopulator\Tests\MySqlPreload;
66

77
use Codeception\Test\Unit;
8-
use Vjik\Codeception\DatabasePopulator\Tests\PreloadTester;
8+
use Vjik\Codeception\DatabasePopulator\Tests\MySqlPreloadTester;
99

1010
final class PreloadTest extends Unit
1111
{
1212
/**
13-
* @var PreloadTester
13+
* @var MySqlPreloadTester
1414
*/
1515
protected $tester;
1616

0 commit comments

Comments
 (0)