Files
Document-Management-System-…/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php

14 lines
222 B
PHP
Raw 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();
}
}