Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CoverageFunctionParenthesesWhitespaceTest.php « _files « tests « php-code-coverage « phpunit « vendor - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: becc6c8f9f3870a3ba3221fbf414ba323378ef1b (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
class CoverageFunctionParenthesesWhitespaceTest extends PHPUnit_Framework_TestCase
{
    /**
     * @covers ::globalFunction ( )
     */
    public function testSomething()
    {
        globalFunction();
    }
}