BrowscapTest\Filter\LiteFilterTest::testIsOutput PHP Method

testIsOutput() public method

tests detecting if a divion should be in the output
public testIsOutput ( )
    public function testIsOutput()
    {
        $division = $this->getMockBuilder(\Browscap\Data\Division::class)->disableOriginalConstructor()->setMethods(['isLite'])->getMock();
        $division->expects(self::once())->method('isLite')->will(self::returnValue(false));
        self::assertFalse($this->object->isOutput($division));
    }