mirror of
https://github.com/t404owo/t404null.git
synced 2025-12-13 18:38:47 +00:00
12 lines
219 B
PHP
12 lines
219 B
PHP
<?php
|
|
class CoverageFunctionParenthesesWhitespaceTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @covers ::globalFunction ( )
|
|
*/
|
|
public function testSomething()
|
|
{
|
|
globalFunction();
|
|
}
|
|
}
|