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

22 lines
361 B
PHP

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