Files

14 lines
222 B
PHP
Raw Permalink Normal View History

2021-04-07 19:25:18 -04:00
<?php
use PHPUnit\Framework\TestCase;
class CoverageFunctionParenthesesTest extends TestCase
{
/**
* @covers ::globalFunction()
*/
public function testSomething()
{
globalFunction();
}
}