Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Jul 18, 2024
1 parent c2ae2f4 commit 381a375
Show file tree
Hide file tree
Showing 6 changed files with 868 additions and 2 deletions.
29 changes: 29 additions & 0 deletions tests/_support/MySqlIntegrationTester.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

declare(strict_types=1);

namespace Vjik\Codeception\DatabasePopulator\Tests;

/**
* Inherited Methods
* @method void wantTo($text)
* @method void wantToTest($text)
* @method void execute($callable)
* @method void expectTo($prediction)
* @method void expect($prediction)
* @method void amGoingTo($argumentation)
* @method void am($role)
* @method void lookForwardTo($achieveValue)
* @method void comment($description)
* @method void pause($vars = [])
*
* @SuppressWarnings(PHPMD)
*/
class MySqlIntegrationTester extends \Codeception\Actor
{
use _generated\MySqlIntegrationTesterActions;

/**
* Define custom actions here
*/
}
29 changes: 29 additions & 0 deletions tests/_support/MySqlPreloadTester.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

declare(strict_types=1);

namespace Vjik\Codeception\DatabasePopulator\Tests;

/**
* Inherited Methods
* @method void wantTo($text)
* @method void wantToTest($text)
* @method void execute($callable)
* @method void expectTo($prediction)
* @method void expect($prediction)
* @method void amGoingTo($argumentation)
* @method void am($role)
* @method void lookForwardTo($achieveValue)
* @method void comment($description)
* @method void pause($vars = [])
*
* @SuppressWarnings(PHPMD)
*/
class MySqlPreloadTester extends \Codeception\Actor
{
use _generated\MySqlPreloadTesterActions;

/**
* Define custom actions here
*/
}
2 changes: 1 addition & 1 deletion tests/_support/_generated/IntegrationTesterActions.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php //[STAMP] c24edd3767fa499960577b11b53d2923
<?php //[STAMP] 4e578d7ff55748495388fac7d7ae2140
// phpcs:ignoreFile
namespace Vjik\Codeception\DatabasePopulator\Tests\_generated;

Expand Down
Loading

0 comments on commit 381a375

Please sign in to comment.