GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#153)
by joseph
20:25
created

GenerateEmbeddableSkeletonCommandTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 12
dl 0
loc 23
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A itCanBeRun() 0 15 1
1
<?php declare(strict_types=1);
2
3
namespace EdmondsCommerce\DoctrineStaticMeta\Tests\Large\E\CodeGeneration\Command;
4
5
use EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Command\GenerateEmbeddableSkeletonCommand;
6
7
/**
8
 * @large
9
 * @covers \EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Command\GenerateEmbeddableSkeletonCommand
10
 */
11
class GenerateEmbeddableSkeletonCommandTest extends AbstractCommandTest
12
{
13
    public const WORK_DIR = self::VAR_PATH . '/'
14
                            . self::TEST_TYPE_LARGE . '/GenerateEmbeddableSkeletonCommandTest/';
15
16
    /**
17
     * @test
18
     */
19
    public function itCanBeRun(): void
20
    {
21
        $command = $this->container->get(GenerateEmbeddableSkeletonCommand::class);
22
        $tester  = $this->getCommandTester($command);
23
        $tester->execute(
24
            [
25
                '-' . GenerateEmbeddableSkeletonCommand::OPT_PROJECT_ROOT_PATH_SHORT            => self::WORK_DIR,
26
                '-' . GenerateEmbeddableSkeletonCommand::OPT_PROJECT_ROOT_NAMESPACE_SHORT       =>
27
                    self::TEST_PROJECT_ROOT_NAMESPACE,
28
                '-' . GenerateEmbeddableSkeletonCommand::OPT_NEW_EMBEDDABLE_CATEGORY_NAME_SHORT => 'Stuff',
29
                '-' . GenerateEmbeddableSkeletonCommand::OPT_NEW_EMBEDDABLE_NAME_SHORT          => 'Thing',
30
            ]
31
        );
32
33
        self::assertTrue($this->qaGeneratedCode());
34
    }
35
}