Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CoverageFunctionParenthesesTest.php 222B

12345678910111213
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. class CoverageFunctionParenthesesTest extends TestCase
  4. {
  5. /**
  6. * @covers ::globalFunction()
  7. */
  8. public function testSomething()
  9. {
  10. globalFunction();
  11. }
  12. }