Paragonik/paragonik-backend/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php
2019-12-08 20:39:40 +01:00

14 lines
222 B
PHP

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