summaryrefslogtreecommitdiffstats
path: root/tests/unit/utility
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-04-09 01:44:12 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-04-09 22:52:26 +0200
commit21bd539847f33c3889c4f58f14afd672f54a410a (patch)
treed6ff27e38727197b60d1c2c47968b7f64d4f5c2f /tests/unit/utility
parentfcef0800a24818305e8a52761b05f87e13206689 (diff)
ported to owncloud internal appframework classes, confused with how to start the app and define deps
Diffstat (limited to 'tests/unit/utility')
-rw-r--r--tests/unit/utility/ConfigTest.php4
-rw-r--r--tests/unit/utility/OPMLExporterTest.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/utility/ConfigTest.php b/tests/unit/utility/ConfigTest.php
index 479acabb5..8ef688844 100644
--- a/tests/unit/utility/ConfigTest.php
+++ b/tests/unit/utility/ConfigTest.php
@@ -28,7 +28,7 @@ namespace OCA\News\Utility;
require_once(__DIR__ . "/../../classloader.php");
-class ConfigFetcherTest extends \OCA\AppFramework\Utility\TestUtility {
+class ConfigFetcherTest extends \OCA\News\Utility\TestUtility {
private $fileSystem;
private $config;
@@ -36,7 +36,7 @@ class ConfigFetcherTest extends \OCA\AppFramework\Utility\TestUtility {
public function setUp() {
$this->api = $this->getMockBuilder(
- '\OCA\AppFramework\Core\API')
+ '\OCA\News\Core\API')
->disableOriginalConstructor()
->getMock();
$this->fileSystem = $this->getMock('FileSystem', array(
diff --git a/tests/unit/utility/OPMLExporterTest.php b/tests/unit/utility/OPMLExporterTest.php
index fbf1bcd1d..cf20f6347 100644
--- a/tests/unit/utility/OPMLExporterTest.php
+++ b/tests/unit/utility/OPMLExporterTest.php
@@ -31,7 +31,7 @@ use \OCA\News\Db\Feed;
require_once(__DIR__ . "/../../classloader.php");
-class OPMLExporterTest extends \OCA\AppFramework\Utility\TestUtility {
+class OPMLExporterTest extends \OCA\News\Utility\TestUtility {
private $exporter;
private $feed1;