| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function testAskDefaultGraph() |
||
| 32 | { |
||
| 33 | // test data |
||
| 34 | $this->subjectUnderTest->query('INSERT INTO <http://example.com/> { |
||
| 35 | <http://s> <http://p1> "baz" . |
||
| 36 | }'); |
||
| 37 | |||
| 38 | $res = $this->subjectUnderTest->query('ASK {<http://s> <http://p1> ?o.}'); |
||
| 39 | $this->assertEquals( |
||
| 40 | [ |
||
| 41 | 'query_type' => 'ask', |
||
| 42 | 'result' => true, |
||
| 43 | ], |
||
| 44 | $res |
||
| 45 | ); |
||
| 65 |