Files
2023-07-14 11:32:46 +08:00

12 lines
194 B
PHP
Executable File

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