mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* fixes for code coverage * Code Coverage filter laravel * Code Coverage fixes * bug fixes
37 lines
669 B
PHP
37 lines
669 B
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Utils\NumberHelper;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @test
|
|
* @covers App\Utils\NumberHelper
|
|
*
|
|
*/
|
|
|
|
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);
|
|
}
|
|
}
|