init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
17
vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php
vendored
Normal file
17
vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* @coversDefaultClass \NamespaceOne
|
||||
* @coversDefaultClass \AnotherDefault\Name\Space\Does\Not\Work
|
||||
*/
|
||||
class CoverageTwoDefaultClassAnnotations
|
||||
{
|
||||
/**
|
||||
* @covers Foo\CoveredClass::<public>
|
||||
*/
|
||||
public function testSomething()
|
||||
{
|
||||
$o = new Foo\CoveredClass;
|
||||
$o->publicMethod();
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue