Neos\FluidAdaptor\Tests\Unit\ViewHelpers\Format\NumberViewHelperTest::formatNumberDefaultsToEnglishNotationWithTwoDecimals PHP 메소드

formatNumberDefaultsToEnglishNotationWithTwoDecimals() 공개 메소드

    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);
    }