Neos\FluidAdaptor\Tests\Unit\ViewHelpers\Format\NumberViewHelperTest::formatNumberDefaultsToEnglishNotationWithTwoDecimals PHP Method

formatNumberDefaultsToEnglishNotationWithTwoDecimals() public method

    public function formatNumberDefaultsToEnglishNotationWithTwoDecimals()
    {
        $this->viewHelper->expects($this->once())->method('renderChildren')->will($this->returnValue(10000.0 / 3.0));
        $actualResult = $this->viewHelper->render();
        $this->assertEquals('3,333.33', $actualResult);
    }