mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
fix phpunit-swoole class name
This commit is contained in:
parent
4b55a3e525
commit
c4ca2103e4
@ -9,10 +9,11 @@ use PHPUnit\Runner\Version;
|
|||||||
use PHPUnit\TextUI\TestRunner;
|
use PHPUnit\TextUI\TestRunner;
|
||||||
use Swoole\Coroutine;
|
use Swoole\Coroutine;
|
||||||
use ZM\Annotation\Swoole\OnStart;
|
use ZM\Annotation\Swoole\OnStart;
|
||||||
use ZM\Command\RunServerCommand;
|
use ZM\Command\Server\ServerStartCommand;
|
||||||
use ZM\Console\Console;
|
use ZM\Console\Console;
|
||||||
use ZM\ConsoleApplication;
|
use ZM\ConsoleApplication;
|
||||||
use ZM\Event\EventManager;
|
use ZM\Event\EventManager;
|
||||||
|
use ZM\Exception\ConfigException;
|
||||||
use ZM\Framework;
|
use ZM\Framework;
|
||||||
use ZM\Store\ZMAtomic;
|
use ZM\Store\ZMAtomic;
|
||||||
use ZM\Utils\ZMUtil;
|
use ZM\Utils\ZMUtil;
|
||||||
@ -71,7 +72,7 @@ chdir(__DIR__ . '/../');
|
|||||||
|
|
||||||
$options = array_map(function ($x) {
|
$options = array_map(function ($x) {
|
||||||
return $x->getDefault();
|
return $x->getDefault();
|
||||||
}, RunServerCommand::exportDefinition()->getOptions());
|
}, ServerStartCommand::exportDefinition()->getOptions());
|
||||||
$options['disable-safe-exit'] = true;
|
$options['disable-safe-exit'] = true;
|
||||||
$options['worker-num'] = 1;
|
$options['worker-num'] = 1;
|
||||||
$options['private-mode'] = true;
|
$options['private-mode'] = true;
|
||||||
@ -90,7 +91,12 @@ spl_autoload_register(static function ($class) {
|
|||||||
}, true, true);
|
}, true, true);
|
||||||
|
|
||||||
Console::setLevel(0);
|
Console::setLevel(0);
|
||||||
|
try {
|
||||||
$framework = new Framework($options);
|
$framework = new Framework($options);
|
||||||
|
} catch (ConfigException $e) {
|
||||||
|
echo $e->getMessage();
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
$start = new OnStart();
|
$start = new OnStart();
|
||||||
$start->method = function () {
|
$start->method = function () {
|
||||||
try {
|
try {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user