Files
laravel-data-sync/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php
2019-01-22 17:58:20 -05:00

14 lines
222 B
PHP

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