PhpBench\Extensions\XDebug\Tests\System\TraceCommandTest::testDumpTrace PHP Метод

testDumpTrace() публичный Метод

It should produce an XML dump of the trace.
public testDumpTrace ( )
    public function testDumpTrace()
    {
        $process = $this->phpbench('xdebug:trace benchmarks/set1/BenchmarkBench.php --dump --filter=benchDoNothing');
        $this->assertExitCode(0, $process);
        $this->assertContains('<trace', $process->getOutput());
    }