14 lines
222 B
PHP
14 lines
222 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CoverageFunctionParenthesesTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers ::globalFunction()
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
globalFunction();
|
|
}
|
|
}
|