]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Module/Api/GnuSocial/Help/TestTest.php
Happy New Year 2023!
[friendica.git] / tests / src / Module / Api / GnuSocial / Help / TestTest.php
index 4c9e0c169e4b9b56ed890bd6022842514e399c71..1b7934a1969d7c0781944940eda9069f3fa6e9ec 100644 (file)
@@ -1,4 +1,23 @@
 <?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\Api\GnuSocial\Help;
 
@@ -12,7 +31,7 @@ class TestTest extends ApiTest
        public function testJson()
        {
                $response = (new Test(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json']))
-                       ->run();
+                       ->run($this->httpExceptionMock);
 
                $json = $this->toJson($response);
 
@@ -26,7 +45,7 @@ class TestTest extends ApiTest
        public function testXml()
        {
                $response = (new Test(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml']))
-                       ->run();
+                       ->run($this->httpExceptionMock);
 
                self::assertEquals([
                        'Content-type'                => ['text/xml'],