diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-07 20:56:43 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-04-07 20:56:43 +0200 |
commit | 240d1ae6b9aa506de4c21e93258a17b23052ac5e (patch) | |
tree | f772c6e0f0e1f46f994e6f0e7b521ca2748e64f9 /tests/lib | |
parent | c86bda03258b35a5df3533939457e987c971bf98 (diff) | |
download | nextcloud-server-240d1ae6b9aa506de4c21e93258a17b23052ac5e.tar.gz nextcloud-server-240d1ae6b9aa506de4c21e93258a17b23052ac5e.zip |
unit test testSetAppValueIfSetToNull() added
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/public/config.php | 37 |
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); + + } + +} |