1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-16 15:26:11 +02:00
Files
php-e107/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php
2018-02-06 03:18:31 -06:00

14 lines
222 B
PHP

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