BrowscapTest\Parser\IniParserTest::testSetShouldSort PHP Method

testSetShouldSort() public method

tests setting the should sort flag
public testSetShouldSort ( )
    public function testSetShouldSort()
    {
        $parser = new IniParser('');
        // Test the default value
        self::assertAttributeEquals(false, 'shouldSort', $parser);
        // Test setting it to true
        $parser->setShouldSort(true);
        self::assertAttributeEquals(true, 'shouldSort', $parser);
        // Test setting it back to false
        $parser->setShouldSort(false);
        self::assertAttributeEquals(false, 'shouldSort', $parser);
    }