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
|
|
|
|