diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index 69debb78..92af46bd 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -1,28 +1,25 @@
-
+
+
+ src
+
+
+
+
+
+
./tests/unit/
-
-
- src
-
-
-
-
-
+
diff --git a/tests/unit/CollectionResolverTest.php b/tests/unit/CollectionResolverTest.php
index 11807dbb..815cb96c 100644
--- a/tests/unit/CollectionResolverTest.php
+++ b/tests/unit/CollectionResolverTest.php
@@ -27,9 +27,6 @@
use PHPUnit\Framework\TestCase;
use RuntimeException;
-/**
- * @coversDefaultClass \phpDocumentor\Reflection\TypeResolver
- */
class CollectionResolverTest extends TestCase
{
/**
@@ -37,10 +34,6 @@ class CollectionResolverTest extends TestCase
* @uses \phpDocumentor\Reflection\Types\Compound
* @uses \phpDocumentor\Reflection\PseudoTypes\Generic
* @uses \phpDocumentor\Reflection\Types\String_
- *
- * @covers ::resolve
- * @covers ::createType
- * @covers ::__construct
*/
public function testResolvingCollection(): void
{
@@ -59,10 +52,6 @@ public function testResolvingCollection(): void
* @uses \phpDocumentor\Reflection\Types\Compound
* @uses \phpDocumentor\Reflection\PseudoTypes\Generic
* @uses \phpDocumentor\Reflection\Types\String_
- *
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
*/
public function testResolvingCollectionWithKeyType(): void
{
@@ -86,10 +75,6 @@ public function testResolvingCollectionWithKeyType(): void
* @uses \phpDocumentor\Reflection\Types\Context
* @uses \phpDocumentor\Reflection\Types\Compound
* @uses \phpDocumentor\Reflection\Types\String_
- *
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
*/
public function testResolvingArrayCollection(): void
{
@@ -112,10 +97,6 @@ public function testResolvingArrayCollection(): void
* @uses \phpDocumentor\Reflection\Types\Context
* @uses \phpDocumentor\Reflection\Types\Compound
* @uses \phpDocumentor\Reflection\Types\String_
- *
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
*/
public function testResolvingArrayCollectionWithKey(): void
{
@@ -138,10 +119,6 @@ public function testResolvingArrayCollectionWithKey(): void
* @uses \phpDocumentor\Reflection\Types\Context
* @uses \phpDocumentor\Reflection\Types\Compound
* @uses \phpDocumentor\Reflection\Types\String_
-
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
*/
public function testResolvingArrayCollectionWithKeyAndWhitespace(): void
{
@@ -165,10 +142,6 @@ public function testResolvingArrayCollectionWithKeyAndWhitespace(): void
* @uses \phpDocumentor\Reflection\Types\Compound
* @uses \phpDocumentor\Reflection\PseudoTypes\Generic
* @uses \phpDocumentor\Reflection\Types\String_
- *
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
*/
public function testResolvingCollectionOfCollection(): void
{
@@ -194,11 +167,6 @@ public function testResolvingCollectionOfCollection(): void
$this->assertEquals(new Object_(new Fqsen('\\DateTime')), $nestedGenericTypes[0]);
}
- /**
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
- */
public function testGoodArrayCollectionKey(): void
{
$fixture = new TypeResolver();
@@ -214,11 +182,6 @@ public function testGoodArrayCollectionKey(): void
$this->assertSame('array', (string) $resolvedType);
}
- /**
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
- */
public function testMissingStartCollection(): void
{
$this->expectException(RuntimeException::class);
@@ -227,11 +190,6 @@ public function testMissingStartCollection(): void
$fixture->resolve('', new Context(''));
}
- /**
- * @covers ::__construct
- * @covers ::resolve
- * @covers ::createType
- */
public function testMissingEndCollection(): void
{
$this->expectException(RuntimeException::class);
@@ -240,11 +198,6 @@ public function testMissingEndCollection(): void
$fixture->resolve('ArrayObject