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

testSetValidOrientation() public method

    public function testSetValidOrientation()
    {
        $exporter = $this->getMockForAbstractClass(AbstractPhantomExporter::class);
        $exporter->setOrientation('landscape');
        $this->assertEquals('landscape', $exporter->getOrientation());
    }