BBnepal-Accounts/vendor/phpunit/php-code-coverage/tests/_files/CoverageTwoDefaultClassAnnotations.php

19 lines
331 B
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<?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();
}
}