2018-02-01 20:01:12 +00:00

14 lines
209 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class CoverageFunctionTest extends TestCase
{
/**
* @covers ::globalFunction
*/
public function testSomething()
{
globalFunction();
}
}