Passed
Pull Request — master (#123)
by
unknown
07:06 queued 02:32
created

TeiHeaderTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A extract() 0 4 1
A setUp() 0 5 1
1
<?php
2
3
/**
4
 * (c) Kitodo. Key to digital objects e.V. <[email protected]>
5
 *
6
 * This file is part of the Kitodo and TYPO3 projects.
7
 *
8
 * @license GNU General Public License version 3 or later.
9
 * For the full copyright and license information, please read the
10
 * LICENSE.txt file that was distributed with this source code.
11
 */
12
13
namespace Kitodo\Dlf\Tests\Unit\Format;
14
15
use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
16
17
class TeiHeaderTest extends UnitTestCase
18
{
19
    protected $metadata = [];
20
21
    public function setUp(): void
22
    {
23
        parent::setUp();
24
25
        $this->metadata = [];
26
    }
27
28
    /**
29
     * @test
30
     * @group extractMetadata
31
     */
32
    public function extract(): void
33
    {
34
        //TODO: TeiHeader class has no useful implementation.
35
        $this->markTestSkipped('Implement test when TeiHeader class is implemented.');
36
    }
37
}
38