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

TermsTest   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Importance

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

7 Methods

Rating   Name   Duplication   Size   Complexity  
A testQuadTemplateQuad() 0 3 1
A testQuadTemplateExceptions() 0 3 1
A testQuadTemplateWith() 0 3 1
A testLiteralWith() 0 3 1
A testQuadTemplate() 0 3 1
A getDataFactory() 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 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