您如何从 php 脚本中 运行 代码接受测试?

How do you run a codeception test from within a php script?

不想运行从 CLI 进行编码测试:

php <pathToCodeCeption>/codecept run

我想 运行 它在 PHP 脚本中:

<?php

$codeCeptionRunner = /* What to do here*/;
$codeCeptionRunner->run();

有人知道如何完成这项任务吗?

从这个片段开始:

<?php
require_once '/path/to/codeception/autoload.php';

$Codecept = new \Codeception\Codecept(array(
    'steps' => true,
    'verbosity' => 1,
    // some other options (see Codeception docs/sources)
 ));

 $Codecept->run('your_test_suit_name');

然后深入研究 Codeception 来源。非常清楚易懂。