コード例 #1
0
ファイル: NumberFormatTest.php プロジェクト: msooon/hubzilla
 /**
  * @covers ::getDecimalPattern
  * @covers ::setDecimalPattern
  */
 public function testDecimalPattern()
 {
     $this->numberFormat->setDecimalPattern('#,##0.###');
     $this->assertEquals('#,##0.###', $this->numberFormat->getDecimalPattern());
 }