BrowscapTest\Formatter\AspFormatterTest::testFormatPropertyValue PHP Method

testFormatPropertyValue() public method

tests formatting a property value
public testFormatPropertyValue ( string $propertyName, string $inputValue, string $expectedValue )
$propertyName string
$inputValue string
$expectedValue string
    public function testFormatPropertyValue($propertyName, $inputValue, $expectedValue)
    {
        $actualValue = $this->object->formatPropertyValue($inputValue, $propertyName);
        self::assertSame($expectedValue, $actualValue, "Property {$propertyName} should be {$expectedValue} (was {$actualValue})");
    }