]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Module/BaseApiTest.php
Merge pull request #12920 from annando/issue-12701
[friendica.git] / tests / src / Module / BaseApiTest.php
index 6e9fbaf1a7c25fbb85cac1c11e3f42cfac35deaa..08a0794c8362113e8e98eb242d682aaa6e8272d7 100644 (file)
@@ -1,7 +1,27 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program 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 program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Test\src\Module;
 
+use Friendica\Module\BaseApi;
 use Friendica\Test\src\Module\Api\ApiTest;
 
 class BaseApiTest extends ApiTest
@@ -28,4 +48,14 @@ class BaseApiTest extends ApiTest
                );
                */
        }
+
+       /**
+        * Test the BaseApi::getCurrentUserID() function.
+        *
+        * @return void
+        */
+       public function testApiUser()
+       {
+               self::assertEquals(parent::SELF_USER['id'], BaseApi::getCurrentUserID());
+       }
 }