Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SprintfTest.php
Go to the documentation of this file.
1 <?php
8 
9 class SprintfTest extends \PHPUnit\Framework\TestCase
10 {
11  public function testFilter()
12  {
13  $sprintfFilter = new \Magento\Framework\Filter\Sprintf('Formatted value: "%s"', 2, ',', ' ');
14  $this->assertEquals('Formatted value: "1 234,57"', $sprintfFilter->filter(1234.56789));
15  }
16 }