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

itCanBeRun()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 15
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 9
nc 1
nop 0
dl 0
loc 15
rs 9.9666
c 0
b 0
f 0
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
}