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

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.
Passed
Pull Request — master (#894)
by
unknown
06:09 queued 02:52
created

TeiHeaderTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 5
rs 10
1
<?php
2
3
namespace Kitodo\Dlf\Tests\Unit\Format;
4
5
use Kitodo\Dlf\Format\TeiHeader ;
6
use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
7
8
class TeiHeaderTest extends UnitTestCase
9
{
10
    protected $metadata = [];
11
12
    public function setUp(): void
13
    {
14
        parent::setUp();
15
16
        $this->metadata = [];
17
    }
18
19
    /**
20
     * @test
21
     * @group extractMetadata
22
     */
23
    public function extract(): void
24
    {
25
        //TODO: TeiHeader class has no usefull implementation.
26
        $this->assertTrue(false);
27
    }
28
}
29