Files
2023-07-11 17:28:33 +08:00

12 lines
194 B
PHP
Executable File

<?php
class CoverageFunctionTest extends PHPUnit_Framework_TestCase
{
/**
* @covers ::globalFunction
*/
public function testSomething()
{
globalFunction();
}
}