blob: 0cf7d5a28d23f7e614eaa13ad2d70828c8b6121e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?php
namespace SRF\Test;
use SMW\Test\QueryPrinterRegistryTestCase;
/**
* Tests for the SRF\Array class.
*
* @file
* @since 1.8
*
* @ingroup SemanticResultFormats
* @ingroup Test
*
* @group SRF
* @group SMWExtension
* @group ResultPrinters
*
* @licence GNU GPL v2+
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
class GraphTest extends QueryPrinterRegistryTestCase {
/**
* @see QueryPrinterRegistryTestCase::getFormats
*
* @since 1.8
*
* @return array
*/
public function getFormats() {
return array( 'graph' );
}
/**
* @see QueryPrinterRegistryTestCase::getClass
*
* @since 1.8
*
* @return string
*/
public function getClass() {
return '\SRFGraph';
}
}
|