mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-01 19:47:30 +00:00
18 lines
330 B
PHP
18 lines
330 B
PHP
<?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();
|
|
}
|
|
|
|
}
|