aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-04-07 20:56:43 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-04-07 20:56:43 +0200
commit240d1ae6b9aa506de4c21e93258a17b23052ac5e (patch)
treef772c6e0f0e1f46f994e6f0e7b521ca2748e64f9 /tests/lib
parentc86bda03258b35a5df3533939457e987c971bf98 (diff)
downloadnextcloud-server-240d1ae6b9aa506de4c21e93258a17b23052ac5e.tar.gz
nextcloud-server-240d1ae6b9aa506de4c21e93258a17b23052ac5e.zip
unit test testSetAppValueIfSetToNull() added
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/public/config.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/lib/public/config.php b/tests/lib/public/config.php
new file mode 100644
index 00000000000..68367034e9a
--- /dev/null
+++ b/tests/lib/public/config.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * ownCloud
+ *
+ * @author Thomas Müller
+ * @copyright 2014 Thomas Müller thomas.mueller@tmit.eu
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+class Test_Config extends PHPUnit_Framework_TestCase
+{
+
+ public function testSetAppValueIfSetToNull() {
+
+ $key = uniqid("key-");
+
+ $result = \OCP\Config::setAppValue('unit-test', $key, null);
+ $this->assertTrue($result);
+
+ $result = \OCP\Config::setAppValue('unit-test', $key, '12');
+ $this->assertTrue($result);
+
+ }
+
+}