PhpBench\Extensions\XDebug\Tests\System\TraceCommandTest::testDumpTraceFilter PHP Method

testDumpTraceFilter() public method

It should show the arguments.
public testDumpTraceFilter ( )
    public function testDumpTraceFilter()
    {
        $process = $this->phpbench('xdebug:trace benchmarks/set1/BenchmarkBench.php --filter=benchRandom --trace-filter=rand --outdir=foobar');
        $this->assertExitCode(0, $process);
        $this->assertContains('rand', $process->getOutput());
    }