mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
35 lines
657 B
PHP
35 lines
657 B
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Utils\NumberHelper;
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
class NumberTest extends TestCase
|
|
{
|
|
|
|
public function testRoundingThreeLow()
|
|
{
|
|
$rounded = NumberHelper::roundValue(3.144444444444, 3);
|
|
|
|
$this->assertEquals(3.144, $rounded);
|
|
|
|
}
|
|
|
|
public function testRoundingThreeHigh()
|
|
{
|
|
$rounded = NumberHelper::roundValue(3.144944444444, 3);
|
|
|
|
$this->assertEquals(3.145, $rounded);
|
|
|
|
}
|
|
|
|
public function testRoundingTwoLow()
|
|
{
|
|
$rounded = NumberHelper::roundValue(2.145);
|
|
|
|
$this->assertEquals(2.15, $rounded);
|
|
}
|
|
}
|