From 9bb05d9733fd8fbf8e27f6eb1d54427ff0086904 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Fri, 19 Apr 2013 15:00:25 +0200 Subject: also html decode author --- tests/unit/utility/OPMLExporterTest.php | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 tests/unit/utility/OPMLExporterTest.php (limited to 'tests/unit/utility/OPMLExporterTest.php') diff --git a/tests/unit/utility/OPMLExporterTest.php b/tests/unit/utility/OPMLExporterTest.php new file mode 100644 index 000000000..fe75695b7 --- /dev/null +++ b/tests/unit/utility/OPMLExporterTest.php @@ -0,0 +1,48 @@ +. +* +*/ + +namespace OCA\News\Utility; + +use \OCA\News\Db\Folder; +use \OCA\News\Db\Feed; + +require_once(__DIR__ . "/../../classloader.php"); + + +class OPMLExporterTest extends \OCA\AppFramework\Utility\TestUtility { + + private $exporter; + + protected function setUp() { + $this->exporter = new OPMLExporter(); + } + + + public function testBuildEmpty(){ + $result = $this->exporter->build(array(), array()); + + } + +} \ No newline at end of file -- cgit v1.2.3