IOP-Patho/vendor/codeception/base/tests/cli/ConfigWithPresetsCest.php

13 lines
241 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
class ConfigWithPresetsCest
{
public function loadWithPresets(CliGuy $I)
{
$I->amInPath('tests/data/presets');
$I->executeCommand('run -c codeception.yml');
$I->seeInShellOutput('OK (1 test');
}
}