带有php7的phpdbg总是返回[什么都没有执行!

时间:2019-06-04 20:55:19

标签: php phpdbg

我只是想开始使用phpdbg,我已经使用进行了安装

mapview(as(tr10, "Spatial"), zcol = "utc_timestamp", lwd = 5,
          legend = TRUE)

我正在尝试使用以下命令运行phpdbg:

apt-get install --yes php-phpdbg

$ phpdbg -qrr vendor/bin/phpunit

ExampleTest.php被

$ phpdbg -qrr vendor/bin/phpunit ExampleTest.php

<?php

namespace Tests\Feature;

use Tests\TestCase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;

class ExampleTest extends TestCase
{
    public function testBasicTest()
     {
         $response = $this->get('/');
         $response->assertStatus(200);
     }
 }

将此行添加到phpunit.xml

$ phpdbg -qrr vendor/bin/phpunit --configuration phpunit.xml

但是输出始终是

  

[什么都没执行!]

0 个答案:

没有答案