PHP code example of portrino / codeception-helper-module

1. Go to this page and download the library: Download portrino/codeception-helper-module library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

portrino / codeception-helper-module example snippets


  $I->truncateTableInDatabase($table);

$I->deleteFromDatabase($table, $criteria);

$I->executeCommand($command, $arguments = [], $environmentVariables = [])

$I->executeSchedulerTask($taskId, $force = false, $environmentVariables = [])

$I->flushCache($force = false, $filesOnly = false)

$I->flushCacheGroups($groups)

$I->importIntoDatabase($file)

$I->executeCommand($command, $arguments = [], $environmentVariables = []);

$I->runSqlCommand($sql);

$I->activatePlugin($plugin);

$I->installPlugin($plugin, $activate);

$I->refreshPluginList();

$I->regenerateThemeCache();

$I->clearCache();

$I->setPluginConfiguration($plugin, $key, $value, $shop = 1);

  $I->seeInDatabase(
        \Portrino\Codeception\Interfaces\DatabaseTables\Typo3::PAGES,
        [
            'uid' => 123,
        ]
  );

  $I->seeInDatabase(
        \Portrino\Codeception\Interfaces\DatabaseTables\Shopware::ARTICLE,
        [
            'id' => 123,
        ]
  );

\Codeception\Util\Fixtures::add(
    'your_fixture_name',
    [
        '__model' =>  \Portrino\Codeception\Model\Typo3\Typo3FrontendUser::class, 
        'fixtureValueX' => 'X',
        'fixtureValueY' => 'Y'
    ]
);

\Portrino\Codeception\Util\Fixtures::get('your_fixture_name');