Passed
Push — master ( f0d4c7...67a964 )
by Konrad
04:54
created

TermsTest::testQuadTemplate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 1
c 1
b 0
f 1
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/*
4
 * This file is part of the sweetrdf/InMemoryStoreSqlite package and licensed under
5
 * the terms of the GPL-3 license.
6
 *
7
 * (c) Konrad Abicht <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace Tests\Integration;
14
15
use rdfInterface\DataFactory as iDataFactory;
16
use rdfInterface\tests\TermsTest as _TermsTest;
17
use sweetrdf\InMemoryStoreSqlite\Rdf\DataFactory;
18
19
class TermsTest extends _TermsTest
20
{
21
    public static function getDataFactory(): iDataFactory
22
    {
23
        return new DataFactory();
24
    }
25
26
    public function testLiteralWith(): void
27
    {
28
        $this->markTestSkipped('Function to test not implemented yet.');
29
    }
30
31
    public function testQuadWith(): void
32
    {
33
        $this->markTestSkipped('Function to test not implemented yet.');
34
    }
35
36
    public function testQuadTemplate(): void
37
    {
38
        $this->markTestSkipped('Function to test not implemented yet.');
39
    }
40
41
    public function testQuadTemplateQuad(): void
42
    {
43
        $this->markTestSkipped('Function to test not implemented yet.');
44
    }
45
46
    public function testQuadTemplateWith(): void
47
    {
48
        $this->markTestSkipped('Function to test not implemented yet.');
49
    }
50
51
    public function testQuadTemplateExceptions(): void
52
    {
53
        $this->markTestSkipped('Function to test not implemented yet.');
54
    }
55
}
56