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

23 lines
384 B
PHP

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