我只是想开始使用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
但是输出始终是
[什么都没执行!]