Files
opensourcepos/tests/helpers/LocaleHelperTest.php
objecttothis de531e20c6 Migrations
- Delete old CI3 file
- Correct format of Migrations file datetime
2024-06-15 17:19:15 +02:00

25 lines
452 B
PHP

<?php
namespace App\Helpers;
use CodeIgniter\Test\CIUnitTestCase;
/**
* @backupGlobals disabled
*/
class LocaleHelperTest extends CIUnitTestCase
{
public function test_parse_decimals_precision()
{
$decimals = parse_decimals(2.22, 2);
$this->assertEquals(2.22, $decimals);
}
public function test_format_decimals()
{
$decimals = to_decimals(5, 2);
$this->assertEquals(5.00, $decimals);
}
}