PhpBench\Tests\Unit\Report\Renderer\XsltRendererTest::setUp PHP Method

setUp() public method

public setUp ( )
    public function setUp()
    {
        $this->formatter = $this->prophesize(Formatter::class);
        $this->output = new BufferedOutput();
        $this->specificReport = 'report_specific.html';
        $this->tokenReport = 'foobar_test_report.html';
        // this is hard coded in
        $this->defaultReport = getcwd() . '/' . XsltRenderer::DEFAULT_FILENAME;
        $this->clean();
    }