phpdbg с php7 всегда возвращает [выполнить нечего!] - PullRequest
2 голосов
/ 04 июня 2019

Я просто пытаюсь запустить phpdbg, я установил его, используя

apt-get install --yes php-phpdbg

Я пытаюсь запустить phpdbg, используя:

$ phpdbg -qrr vendor/bin/phpunit

и

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

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);
     }
 }

также

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

Добавление этих строк в phpunit.xml

<logging>
    <log type="coverage-clover" target="tests/_reports/logs/clover.xml"/>
    <log type="coverage-html" target="tests/_reports/coverage" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70" />
    <log type="testdox-text" target="tests/_reports/testdox/executed.txt"/>
</logging>

Но вывод всегда

[нечего выполнять!]

...