Fireguard\Report\Exporters\AbstractPhantomExporterTest::testSetBinayPath PHP Method

testSetBinayPath() public method

public testSetBinayPath ( )
    public function testSetBinayPath()
    {
        $exporter = $this->getMockForAbstractClass(AbstractPhantomExporter::class);
        $exporter->setBinaryPath('/path/for/binary');
        $this->assertEquals('/path/for/binary', $exporter->getBinaryPath());
    }