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.

CoverageMethodParenthesesTest.php 263B

1234567891011121314
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. class CoverageMethodParenthesesTest extends TestCase
  4. {
  5. /**
  6. * @covers CoveredClass::publicMethod()
  7. */
  8. public function testSomething()
  9. {
  10. $o = new CoveredClass;
  11. $o->publicMethod();
  12. }
  13. }