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/CoverageMethodParenthesesWhitespaceTest.php
2018-02-06 03:18:31 -06:00

15 lines
275 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class CoverageMethodParenthesesWhitespaceTest extends TestCase
{
/**
* @covers CoveredClass::publicMethod ( )
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}