init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
14
vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php
vendored
Normal file
14
vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class CoverageNotPublicTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @covers CoveredClass::<!public>
|
||||
*/
|
||||
public function testSomething()
|
||||
{
|
||||
$o = new CoveredClass;
|
||||
$o->publicMethod();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue