gnu-social/vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php

15 lines
246 B
PHP
Raw Normal View History

2020-08-08 07:42:38 +09:00
<?php
use PHPUnit\Framework\TestCase;
class CoveragePublicTest extends TestCase
{
/**
* @covers CoveredClass::<public>
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}