Contao\CoreBundle\Test\Contao\ImageTest::getGetPixelValueData PHP Method

getGetPixelValueData() public method

Provides the data for the testGetPixelValue() method.
public getGetPixelValueData ( ) : array
return array
    public function getGetPixelValueData()
    {
        return ['No unit' => ['1234.5', 1235], 'px' => ['1234.5px', 1235], 'em' => ['1em', 16], 'ex' => ['2ex', 16], 'pt' => ['12pt', 16], 'pc' => ['1pc', 16], 'in' => [1 / 6 . 'in', 16], 'cm' => [2.54 / 6 . 'cm', 16], 'mm' => [25.4 / 6 . 'mm', 16], 'invalid' => ['abc', 0]];
    }