BrowscapTest\Parser\IniParserTest::testShouldSort PHP Method

testShouldSort() public method

tests setting and getting the should sort flag
public testShouldSort ( )
    public function testShouldSort()
    {
        $parser = new IniParser('');
        self::assertFalse($parser->shouldSort());
        $parser->setShouldSort(true);
        self::assertTrue($parser->shouldSort());
        $parser->setShouldSort(false);
        self::assertFalse($parser->shouldSort());
    }