]> source.dussan.org Git - nextcloud-server.git/commitdiff
Make dates test class properties.
authorAndreas Fischer <bantu@owncloud.com>
Thu, 5 Sep 2013 00:27:29 +0000 (02:27 +0200)
committerAndreas Fischer <bantu@owncloud.com>
Thu, 12 Sep 2013 21:43:20 +0000 (23:43 +0200)
tests/lib/share/share.php

index cd108a24f4010de72a18c6afc79f28cc93631ae9..c82ede2f387ed705b59becb4f38adb066c37c953 100644 (file)
@@ -30,6 +30,9 @@ class Test_Share extends PHPUnit_Framework_TestCase {
        protected $group2;
        protected $resharing;
 
+       protected $dateInPast = '2000-01-01 00:00:00';
+       protected $dateInFuture = '2037-01-01 00:00:00';
+
        public function setUp() {
                OC_User::clearBackends();
                OC_User::useBackend('dummy');
@@ -270,7 +273,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
 
                OC_User::setUserId($this->user1);
                $this->assertTrue(
-                       OCP\Share::setExpirationDate('test', 'test.txt', '2000-01-01 00:00:00'),
+                       OCP\Share::setExpirationDate('test', 'test.txt', $this->dateInPast),
                        'Failed asserting that user 1 successfully set an expiration date for the test.txt share.'
                );
 
@@ -287,7 +290,7 @@ class Test_Share extends PHPUnit_Framework_TestCase {
 
                OC_User::setUserId($this->user1);
                $this->assertTrue(
-                       OCP\Share::setExpirationDate('test', 'test.txt', '2037-01-01 00:00:00'),
+                       OCP\Share::setExpirationDate('test', 'test.txt', $this->dateInFuture),
                        'Failed asserting that user 1 successfully set an expiration date for the test.txt share.'
                );