summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-06-25 01:18:53 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-06-25 01:18:53 +0200
commit5f0fd49ccd396e654a4bee159799f62ac74fd9f4 (patch)
treee9e0cbb845b6fc61325ca1cd967aa677c79e8156 /tests/unit/controller
parent311afe02dccf43ac497fb351ff579e6522529922 (diff)
add phpunit xml
Diffstat (limited to 'tests/unit/controller')
-rw-r--r--tests/unit/controller/EntityApiSerializerTest.php2
-rw-r--r--tests/unit/controller/ExportControllerTest.php2
-rw-r--r--tests/unit/controller/FeedApiControllerTest.php2
-rw-r--r--tests/unit/controller/FeedControllerTest.php2
-rw-r--r--tests/unit/controller/FolderApiControllerTest.php2
-rw-r--r--tests/unit/controller/FolderControllerTest.php2
-rw-r--r--tests/unit/controller/ItemApiControllerTest.php2
-rw-r--r--tests/unit/controller/ItemControllerTest.php2
-rw-r--r--tests/unit/controller/JSONHttpErrorTest.php1
-rw-r--r--tests/unit/controller/PageControllerTest.php3
-rw-r--r--tests/unit/controller/UtilityApiControllerTest.php2
11 files changed, 0 insertions, 22 deletions
diff --git a/tests/unit/controller/EntityApiSerializerTest.php b/tests/unit/controller/EntityApiSerializerTest.php
index 68675824b..9e77421ce 100644
--- a/tests/unit/controller/EntityApiSerializerTest.php
+++ b/tests/unit/controller/EntityApiSerializerTest.php
@@ -13,8 +13,6 @@
namespace OCA\News\Controller;
-require_once(__DIR__ . "/../../classloader.php");
-
use \OCP\AppFramework\Http\Response;
diff --git a/tests/unit/controller/ExportControllerTest.php b/tests/unit/controller/ExportControllerTest.php
index ded145f2b..28d69c6f3 100644
--- a/tests/unit/controller/ExportControllerTest.php
+++ b/tests/unit/controller/ExportControllerTest.php
@@ -20,8 +20,6 @@ use \OCA\News\Utility\OPMLExporter;
use \OCA\News\Db\Item;
use \OCA\News\Db\Feed;
-require_once(__DIR__ . "/../../classloader.php");
-
class ExportControllerTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/unit/controller/FeedApiControllerTest.php b/tests/unit/controller/FeedApiControllerTest.php
index a276512f6..c614dac82 100644
--- a/tests/unit/controller/FeedApiControllerTest.php
+++ b/tests/unit/controller/FeedApiControllerTest.php
@@ -21,8 +21,6 @@ use \OCA\News\Db\Folder;
use \OCA\News\Db\Feed;
use \OCA\News\Db\Item;
-require_once(__DIR__ . "/../../classloader.php");
-
class FeedApiControllerTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/unit/controller/FeedControllerTest.php b/tests/unit/controller/FeedControllerTest.php
index fc46594a8..1ed389db3 100644
--- a/tests/unit/controller/FeedControllerTest.php
+++ b/tests/unit/controller/FeedControllerTest.php
@@ -20,8 +20,6 @@ use \OCA\News\Db\FeedType;
use \OCA\News\Service\ServiceNotFoundException;
use \OCA\News\Service\ServiceConflictException;
-require_once(__DIR__ . "/../../classloader.php");
-
class FeedControllerTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/unit/controller/FolderApiControllerTest.php b/tests/unit/controller/FolderApiControllerTest.php
index a2e3a4c6f..22e038e16 100644
--- a/tests/unit/controller/FolderApiControllerTest.php
+++ b/tests/unit/controller/FolderApiControllerTest.php
@@ -24,8 +24,6 @@ use \OCA\News\Db\Folder;
use \OCA\News\Db\Feed;
use \OCA\News\Db\Item;
-require_once(__DIR__ . "/../../classloader.php");
-
class FolderApiControllerTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/unit/controller/FolderControllerTest.php b/tests/unit/controller/FolderControllerTest.php
index 20ab26341..9ff293b2a 100644
--- a/tests/unit/controller/FolderControllerTest.php
+++ b/tests/unit/controller/FolderControllerTest.php
@@ -21,8 +21,6 @@ use \OCA\News\Service\ServiceNotFoundException;
use \OCA\News\Service\ServiceConflictException;
use \OCA\News\Service\ServiceValidationException;
-require_once(__DIR__ . "/../../classloader.php");
-
class FolderControllerTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/unit/controller/ItemApiControllerTest.php b/tests/unit/controller/ItemApiControllerTest.php
index e1e91b424..f2bbd92b6 100644
--- a/tests/unit/controller/ItemApiControllerTest.php
+++ b/tests/unit/controller/ItemApiControllerTest.php
@@ -18,8 +18,6 @@ use \OCP\AppFramework\Http;
use \OCA\News\Service\ServiceNotFoundException;
use \OCA\News\Db\Item;
-require_once(__DIR__ . "/../../classloader.php");
-
class ItemApiControllerTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/unit/controller/ItemControllerTest.php b/tests/unit/controller/ItemControllerTest.php
index 59bb7681b..b5a579783 100644
--- a/tests/unit/controller/ItemControllerTest.php
+++ b/tests/unit/controller/ItemControllerTest.php
@@ -20,8 +20,6 @@ use \OCA\News\Db\Feed;
use \OCA\News\Db\FeedType;
use \OCA\News\Service\ServiceNotFoundException;
-require_once(__DIR__ . "/../../classloader.php");
-
class ItemControllerTest extends \PHPUnit_Framework_TestCase {
diff --git a/tests/unit/controller/JSONHttpErrorTest.php b/tests/unit/controller/JSONHttpErrorTest.php
index ffbbbed43..8ab657aa9 100644
--- a/tests/unit/controller/JSONHttpErrorTest.php
+++ b/tests/unit/controller/JSONHttpErrorTest.php
@@ -13,7 +13,6 @@
namespace OCA\News\Controller;
-require_once(__DIR__ . "/../../classloader.php");
class Test {
use JSONHttpError;
diff --git a/tests/unit/controller/PageControllerTest.php b/tests/unit/controller/PageControllerTest.php
index 0e0959ea7..fbb44dc67 100644
--- a/tests/unit/controller/PageControllerTest.php
+++ b/tests/unit/controller/PageControllerTest.php
@@ -14,9 +14,6 @@
namespace OCA\News\Controller;
-require_once(__DIR__ . "/../../classloader.php");
-
-
class PageControllerTest extends \PHPUnit_Framework_TestCase {
private $settings;
diff --git a/tests/unit/controller/UtilityApiControllerTest.php b/tests/unit/controller/UtilityApiControllerTest.php
index 4c0107c91..d9c298858 100644
--- a/tests/unit/controller/UtilityApiControllerTest.php
+++ b/tests/unit/controller/UtilityApiControllerTest.php
@@ -13,8 +13,6 @@
namespace OCA\News\Controller;
-require_once(__DIR__ . "/../../classloader.php");
-
class UtilityApiControllerTest extends \PHPUnit_Framework_TestCase {