first commit
This commit is contained in:
18
vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php
vendored
Normal file
18
vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
<?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();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user