File: SelfTest.php

package info (click to toggle)
php-phpdocumentor-type-resolver 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,432 kB
  • sloc: php: 26,448; xml: 102; makefile: 50
file content (61 lines) | stat: -rw-r--r-- 1,682 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php

declare(strict_types=1);

namespace phpDocumentor\Reflection\Types;

use phpDocumentor\Reflection\Fqsen;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;

/**
 * @coversDefaultClass \phpDocumentor\Reflection\Types\Self_
 */
class SelfTest extends TestCase
{
    /**
     * @covers ::getGenericTypes
     */
    public function testCreate(): void
    {
        $genericTypes = [
            new Object_(new Fqsen('\\phpDocumentor\\FirstClass')),
            new Object_(new Fqsen('\\phpDocumentor\\SecondClass')),
            new Object_(new Fqsen('\\phpDocumentor\\ThirdClass')),
        ];

        $type = new Self_(...$genericTypes);

        $this->assertSame($genericTypes, $type->getGenericTypes());
    }

    /**
     * @covers ::__toString
     */
    #[DataProvider('provideToStringData')]
    public function testToString(string $expectedResult, Self_ $type): void
    {
        $this->assertSame($expectedResult, (string) $type);
    }

    /**
     * @return array<string, array{string, OffsetAccess}>
     */
    public static function provideToStringData(): array
    {
        return [
            'basic' => [
                'self',
                new Self_(),
            ],
            'with generic' => [
                'self<\\phpDocumentor\\FirstClass, \\phpDocumentor\\SecondClass, \\phpDocumentor\\ThirdClass>',
                new Self_(
                    new Object_(new Fqsen('\\phpDocumentor\\FirstClass')),
                    new Object_(new Fqsen('\\phpDocumentor\\SecondClass')),
                    new Object_(new Fqsen('\\phpDocumentor\\ThirdClass')),
                ),
            ],
        ];
    }
}