File: AnnotationsAreNotSupportedForInternalClassesExceptionTest.php

package info (click to toggle)
phpunit 11.5.19-1%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 46,892 kB
  • sloc: php: 87,771; xml: 1,938; makefile: 119; sh: 94
file content (30 lines) | stat: -rw-r--r-- 1,003 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
<?php declare(strict_types=1);
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PHPUnit\Metadata;

use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\Small;
use PHPUnit\Framework\TestCase;

#[CoversClass(AnnotationsAreNotSupportedForInternalClassesException::class)]
#[Small]
#[Group('metadata')]
#[Group('metadata/annotations')]
final class AnnotationsAreNotSupportedForInternalClassesExceptionTest extends TestCase
{
    public function testConstructsMessageCorrectly(): void
    {
        $this->assertSame(
            'Annotations can only be parsed for user-defined classes, trying to parse annotations for class "the-class"',
            (new AnnotationsAreNotSupportedForInternalClassesException('the-class'))->getMessage(),
        );
    }
}