I do not want to run a codeception test from the CLI:
php <pathToCodeCeption>/codecept run
I want to run it inside a PHP script:
<?php
$codeCeptionRunner = /* What to do here*/;
$codeCeptionRunner->run();
Does anyone has an idea how to accomplish this task?