Update prueba
This commit is contained in:
@ -22,6 +22,8 @@ class ValorTest extends TestCase
|
||||
return [
|
||||
['1.003.000,01', 1003000.01],
|
||||
['4,273.84', 4273.84],
|
||||
[443.75, 443.75],
|
||||
['443.75', 443.75]
|
||||
];
|
||||
}
|
||||
|
||||
@ -36,6 +38,14 @@ class ValorTest extends TestCase
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
public static function ufsDataProvider(): array
|
||||
{
|
||||
return [
|
||||
['1000000', 28.57143],
|
||||
[443.75, 443.75]
|
||||
];
|
||||
}
|
||||
|
||||
public function testToUF()
|
||||
{
|
||||
$date = '2025-01-01';
|
||||
|
Reference in New Issue
Block a user