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/NamespaceCoveragePrivateTest.php
vendored
Normal file
14
vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class NamespaceCoveragePrivateTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @covers Foo\CoveredClass::<private>
|
||||
*/
|
||||
public function testSomething()
|
||||
{
|
||||
$o = new Foo\CoveredClass;
|
||||
$o->publicMethod();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue