Passed
Push — master ( 67a964...2aff1a )
by Konrad
04:08
created

TermsTest   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 40
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 9
dl 0
loc 40
rs 10
c 1
b 0
f 1
wmc 8

8 Methods

Rating   Name   Duplication   Size   Complexity  
A getDataFactory() 0 3 1
A testQuadTemplateQuad() 0 3 1
A testLiteralFactory() 0 3 1
A testQuadTemplateExceptions() 0 3 1
A testQuadTemplateWith() 0 3 1
A testLiteralWith() 0 3 1
A testQuadTemplate() 0 3 1
A testQuadWith() 0 3 1
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 testLiteralFactory(): void
27
    {
28
        $this->markTestSkipped('Skipped for now. Wait until feedback/merge of https://github.com/sweetrdf/rdfInterface/pull/17.');
29
    }
30
31
    public function testLiteralWith(): void
32
    {
33
        $this->markTestSkipped('Function to test not implemented yet.');
34
    }
35
36
    public function testQuadWith(): void
37
    {
38
        $this->markTestSkipped('Function to test not implemented yet.');
39
    }
40
41
    public function testQuadTemplate(): void
42
    {
43
        $this->markTestSkipped('Function to test not implemented yet.');
44
    }
45
46
    public function testQuadTemplateQuad(): void
47
    {
48
        $this->markTestSkipped('Function to test not implemented yet.');
49
    }
50
51
    public function testQuadTemplateWith(): void
52
    {
53
        $this->markTestSkipped('Function to test not implemented yet.');
54
    }
55
56
    public function testQuadTemplateExceptions(): void
57
    {
58
        $this->markTestSkipped('Function to test not implemented yet.');
59
    }
60
}
61