Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Pull Request — master (#277)
by Jérémiah
20:41
created

GlobalVariablesTest::testGetUnknownService()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
3
namespace Overblog\GraphQLBundle\Tests\Definition;
4
5
use Overblog\GraphQLBundle\Definition\GlobalVariables;
6
use PHPUnit\Framework\TestCase;
7
8
class GlobalVariablesTest extends TestCase
9
{
10
    public function testGetUnknownService()
11
    {
12
        $this->expectException(\LogicException::class);
13
        $this->expectExceptionMessage('Global variable "unknown" could not be located. You should define it.');
14
        (new GlobalVariables())->get('unknown');
15
    }
16
}
17