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

Completed
Pull Request — master (#65)
by Jérémiah
32:49 queued 28:48
created

GraphiQLControllerTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 21
rs 10
c 1
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testIndexAction() 0 7 1
A graphiQLUriProvider() 0 7 1
1
<?php
2
3
/*
4
 * This file is part of the OverblogGraphQLBundle package.
5
 *
6
 * (c) Overblog <http://github.com/overblog/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Overblog\GraphQLBundle\Tests\Functional\Controller;
13
14
use Overblog\GraphQLBundle\Tests\Functional\TestCase;
15
16
class GraphiQLControllerTest extends TestCase
17
{
18
    /**
19
     * @dataProvider graphiQLUriProvider
20
     */
21
    public function testIndexAction($uri)
22
    {
23
        $client = static::createClient();
24
25
        $client->request('GET', $uri);
26
        $this->assertEquals(200, $client->getResponse()->getStatusCode());
27
    }
28
29
    public function graphiQLUriProvider()
30
    {
31
        return [
32
            ['/graphiql'],
33
            ['/graphiql/default']
34
        ];
35
    }
36
}
37