Files
littleTiger/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php

12 lines
207 B
PHP
Raw Permalink Normal View History

2019-03-04 16:08:27 +08:00
<?php
class CoverageFunctionParenthesesTest extends PHPUnit_Framework_TestCase
{
/**
* @covers ::globalFunction()
*/
public function testSomething()
{
globalFunction();
}
}