BrowscapTest\Filter\LiteFilterTest::testIsOutputSectionOnlyWhenLite PHP Method

testIsOutputSectionOnlyWhenLite() public method

tests if a section is always in the output, if the lite flag is true
    public function testIsOutputSectionOnlyWhenLite()
    {
        $this->assertFalse($this->object->isOutputSection([]));
        $this->assertFalse($this->object->isOutputSection(['lite' => false]));
        $this->assertTrue($this->object->isOutputSection(['lite' => true]));
    }