summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/Formats/ExcelTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/Formats/ExcelTest.php')
-rw-r--r--www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/Formats/ExcelTest.php45
1 files changed, 0 insertions, 45 deletions
diff --git a/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/Formats/ExcelTest.php b/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/Formats/ExcelTest.php
deleted file mode 100644
index ec30881c..00000000
--- a/www/wiki/extensions/SemanticResultFormats/tests/phpunit/Unit/Formats/ExcelTest.php
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace SRF\Tests\Unit\Formats;
-
-use SMW\Test\QueryPrinterRegistryTestCase;
-
-/**
- * Tests for the SRF\Excel class.
- *
- * @since 1.9
- *
- * @ingroup SemanticResultFormats
- * @ingroup Test
- *
- * @group SRF
- * @group SMWExtension
- * @group ResultPrinters
- *
- * @author Kim Eik
- */
-class ExcelTest extends QueryPrinterRegistryTestCase {
-
- /**
- * @see QueryPrinterRegistryTestCase::getFormats
- *
- * @since 1.8
- *
- * @return array
- */
- public function getFormats() {
- return [ 'excel' ];
- }
-
- /**
- * @see QueryPrinterRegistryTestCase::getClass
- *
- * @since 1.8
- *
- * @return string
- */
- public function getClass() {
- return 'SRF\SRFExcel';
- }
-
-}