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
Push — master ( c6e2c9...016559 )
by Андрей
06:47 queued 02:23
created

IntegrationTest::testDispatch()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 9
rs 9.6666
c 1
b 0
f 0
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
/**
3
 * @link    https://github.com/old-town/workflow-zf2-dispatch
4
 * @author  Malofeykin Andrey  <[email protected]>
5
 */
6
namespace OldTown\Workflow\ZF2\Dispatch\PhpUnit\Test;
7
8
use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\TestPaths;
9
use Zend\Test\PHPUnit\Controller\AbstractHttpControllerTestCase;
10
11
12
/**
13
 * Class ModuleTest
14
 *
15
 * @package OldTown\Workflow\ZF2\Dispatch\PhpUnit\Test
16
 */
17
class IntegrationTest extends AbstractHttpControllerTestCase
18
{
19
    /**
20
     *
21
     * @return void
22
     */
23
    public function testDispatch()
24
    {
25
        /** @noinspection PhpIncludeInspection */
26
        $this->setApplicationConfig(
27
            include TestPaths::getPathToIntegrationTest()
28
        );
29
30
        $this->dispatch('test');
31
    }
32
}
33