PMCORE-631

This commit is contained in:
Paula Quispe
2020-04-09 17:45:04 -04:00
parent 795a52afd3
commit a3d4b65bf4
6 changed files with 76 additions and 157 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Tests\unit\workflow\src\ProcessMaker\Util\Helpers;
use Tests\TestCase;
class GetMysqlVersionTest extends TestCase
{
/**
* Test get the mysql version
*
* @test
*/
public function it_should_get_mysql_version()
{
$this->assertNotEmpty(getMysqlVersion());
}
}