fastadmin/application/common/command/Test.php

37 lines
1.2 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2015 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------
namespace app\common\command;
use PHPUnit\TextUI\Command;
use think\console\Command as BaseCommand;
use think\console\Input;
use think\console\Output;
use think\Session;
class Test extends BaseCommand
{
public function configure()
{
$this->setName('unit')->setDescription('phpunit')->ignoreValidationErrors();
}
public function execute(Input $input, Output $output): ?int
{
Session::init();
$argv = $_SERVER['argv'];
array_shift($argv);
array_shift($argv);
array_unshift($argv, 'phpunit');
return (new Command())->run($argv, false);
}
}