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
03:21
created

TeiHeaderTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A extract() 0 6 1
A setUp() 0 5 1
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
        $teiHeader = new TeiHeader();
0 ignored issues
show
Unused Code introduced by
The assignment to $teiHeader is dead and can be removed.
Loading history...
26
        //$teiHeader->extractMetadata();
27
        //TODO: TeiHeader class not fully implemented.
28
        $this->assertTrue(false);
29
    }
30
}
31