Passed
Pull Request — master (#123)
by
unknown
04:32
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
/**
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