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

22 lines
379 B
PHP

<?php
namespace Tests\unit\workflow\engine\classes\PmFunctions;
use Tests\TestCase;
/**
* Test the PMFRemoveMask() function
*/
class PMFRemoveMaskTest extends TestCase
{
/**
* This tests the "PMFRemoveMask"
* @test
*/
public function it_get_literal_date()
{
$result = PMFRemoveMask('35.5');
$this->assertNotEmpty($result);
}
}