Files
luos/tests/unit/workflow/engine/classes/PmFunctions/PmToFloatTest.php
Paula Quispe 8fbcb712e5 PMCORE-3674
2022-04-27 12:48:00 -04:00

23 lines
383 B
PHP

<?php
namespace Tests\unit\workflow\engine\classes\PmFunctions;
use Tests\TestCase;
/**
* Test the pmToFloat() function
*/
class PmToFloatTest extends TestCase
{
/**
* This tests the "pmToFloat"
* @test
*/
public function it_get_float()
{
$value = '1.2';
$result = pmToFloat($value);
$this->assertEquals($result, 1.2);
}
}